transactions / #128
- accountId
- accounts/371
- kind
- withdrawal
- amount
- -4592.47
- currency
- JPY
- description
- Wire transfer sent
- status
- completed
- occurredAt
- createdAt
Component variants
Medium
#128
#128
Wire transfer sent
Small
transactions/128 Related
References
curl -sS \
"https://example-data.com/api/v1/transactions/128" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/transactions/128"
);
const transaction = await res.json();import type { Transaction } from "https://example-data.com/types/transactions.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/transactions/128"
);
const transaction = (await res.json()) as Transaction;import requests
res = requests.get(
"https://example-data.com/api/v1/transactions/128"
)
transaction = res.json() {
"id": 128,
"accountId": 371,
"kind": "withdrawal",
"amount": -4592.47,
"currency": "JPY",
"description": "Wire transfer sent",
"status": "completed",
"occurredAt": "2024-12-17T21:31:49.653Z",
"createdAt": "2024-12-17T21:32:03.554Z"
}