accounts / #73
- userId
-
Lenny Howe @lenny.howe
- name
- Retirement Savings
- type
- savings
- balance
- 17763.18
- currency
- CHF
- isActive
- true
- createdAt
Component variants
Medium
Retirement Savings
#73
Small
accounts/73 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/73" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/73"
);
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/73"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/73"
)
account = res.json() {
"id": 73,
"userId": 37,
"name": "Retirement Savings",
"type": "savings",
"balance": 17763.18,
"currency": "CHF",
"isActive": true,
"createdAt": "2024-08-09T11:29:13.211Z"
}