accounts / #14
- userId
-
Alvena Emmerich @alvena_emmerich52
- name
- Petty Cash
- type
- other
- balance
- 9467.18
- currency
- JPY
- isActive
- true
- createdAt
Component variants
Medium
Petty Cash
#14
Small
accounts/14 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/14" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/14"
);
const account = await res.json();import type { Account } from "https://example-data.com/types/accounts.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/accounts/14"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/14"
)
account = res.json() {
"id": 14,
"userId": 8,
"name": "Petty Cash",
"type": "other",
"balance": 9467.18,
"currency": "JPY",
"isActive": true,
"createdAt": "2024-05-22T23:02:47.621Z"
}