accounts / #452
- userId
-
Simeon Heathcote @simeon_heathcote75
- name
- Gift Card Balance
- type
- other
- balance
- 5267.92
- currency
- EUR
- isActive
- true
- createdAt
Component variants
Medium
Gift Card Balance
#452
Small
accounts/452 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/452" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/452"
);
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/452"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/452"
)
account = res.json() {
"id": 452,
"userId": 224,
"name": "Gift Card Balance",
"type": "other",
"balance": 5267.92,
"currency": "EUR",
"isActive": true,
"createdAt": "2025-03-02T23:36:22.161Z"
}