accounts / #79
- userId
-
Margaretta Barrows @margaretta_barrows41
- name
- HSA Account
- type
- other
- balance
- 11805.22
- currency
- JPY
- isActive
- true
- createdAt
Component variants
Medium
HSA Account
#79
Small
accounts/79 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/79" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/79"
);
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/79"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/79"
)
account = res.json() {
"id": 79,
"userId": 39,
"name": "HSA Account",
"type": "other",
"balance": 11805.22,
"currency": "JPY",
"isActive": true,
"createdAt": "2024-09-03T20:02:38.488Z"
}