accounts / #209
- userId
-
Jermain Kshlerin @jermain_kshlerin51
- name
- Petty Cash
- type
- other
- balance
- 18930.04
- currency
- CAD
- isActive
- true
- createdAt
Component variants
Medium
Petty Cash
#209
Small
accounts/209 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/209" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/209"
);
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/209"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/209"
)
account = res.json() {
"id": 209,
"userId": 104,
"name": "Petty Cash",
"type": "other",
"balance": 18930.04,
"currency": "CAD",
"isActive": true,
"createdAt": "2025-07-01T08:23:42.047Z"
}