accounts / #343
- userId
-
Vincenza Zemlak-Collier @vincenza_zemlak-collier
- name
- Home Mortgage
- type
- loan
- balance
- -377154.05
- currency
- GBP
- isActive
- true
- createdAt
Component variants
Medium
Home Mortgage
#343
Small
accounts/343 Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/343" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/343"
);
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/343"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/343"
)
account = res.json() {
"id": 343,
"userId": 168,
"name": "Home Mortgage",
"type": "loan",
"balance": -377154.05,
"currency": "GBP",
"isActive": true,
"createdAt": "2024-06-16T12:28:35.917Z"
}