addresses / #156
- userId
-
Daren Lockman @daren_lockman67
- label
- billing
- recipient
- Desiree Hartmann
- street1
- 78935 Kingfisher Close
- street2
- —
- city
- Toyburgh
- region
- Idaho
- postalCode
- 63897-6413
- countryAlpha2
- NL
- isDefault
- false
- createdAt
Component variants
Medium
billing
#156
Small
addresses/156 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/156" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/156"
);
const addresse = await res.json();import type { Addresse } from "https://example-data.com/types/addresses.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/addresses/156"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/156"
)
addresse = res.json() {
"id": 156,
"userId": 116,
"label": "billing",
"recipient": "Desiree Hartmann",
"street1": "78935 Kingfisher Close",
"street2": null,
"city": "Toyburgh",
"region": "Idaho",
"postalCode": "63897-6413",
"countryAlpha2": "NL",
"isDefault": false,
"createdAt": "2024-12-17T14:17:41.776Z"
}