accounts / #441
- userId
-
Dasia Volkman @dasia_volkman65
- name
- Primary Checking
- type
- checking
- balance
- 15449.63
- currency
- CHF
- isActive
- true
- createdAt
Component variants
Medium
Primary Checking
#441
Small
accounts/441 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/441" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/441"
);
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/441"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/441"
)
account = res.json() {
"id": 441,
"userId": 219,
"name": "Primary Checking",
"type": "checking",
"balance": 15449.63,
"currency": "CHF",
"isActive": true,
"createdAt": "2024-07-23T20:45:53.065Z"
}