accounts / #83
- userId
-
Amely Daniel @amely_daniel
- name
- Home Mortgage
- type
- loan
- balance
- -32482.16
- currency
- USD
- isActive
- true
- createdAt
Component variants
Medium
Home Mortgage
#83
Small
accounts/83 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/83" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/83"
);
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/83"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/83"
)
account = res.json() {
"id": 83,
"userId": 41,
"name": "Home Mortgage",
"type": "loan",
"balance": -32482.16,
"currency": "USD",
"isActive": true,
"createdAt": "2024-07-05T13:41:02.888Z"
}