accounts / #92
- userId
-
Lacy Gusikowski @lacy.gusikowski
- name
- Cash Back Card
- type
- credit_card
- balance
- -3238.76
- currency
- CHF
- isActive
- false
- createdAt
Component variants
Medium
Cash Back Card
#92
Small
accounts/92 Related
References
Referenced by
curl -sS \
"https://example-data.com/api/v1/accounts/92" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/accounts/92"
);
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/92"
);
const account = (await res.json()) as Account;import requests
res = requests.get(
"https://example-data.com/api/v1/accounts/92"
)
account = res.json() {
"id": 92,
"userId": 47,
"name": "Cash Back Card",
"type": "credit_card",
"balance": -3238.76,
"currency": "CHF",
"isActive": false,
"createdAt": "2024-08-03T09:36:49.744Z"
}