addresses / #23
- userId
-
Melba Collier @melba.collier
- label
- other
- recipient
- Ted Hodkiewicz
- street1
- 31254 7th Avenue
- street2
- —
- city
- Fond du Lac
- region
- Louisiana
- postalCode
- 75683
- countryAlpha2
- IS
- isDefault
- false
- createdAt
Component variants
Medium
other
#23
Small
addresses/23 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/23" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/23"
);
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/23"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/23"
)
addresse = res.json() {
"id": 23,
"userId": 19,
"label": "other",
"recipient": "Ted Hodkiewicz",
"street1": "31254 7th Avenue",
"street2": null,
"city": "Fond du Lac",
"region": "Louisiana",
"postalCode": "75683",
"countryAlpha2": "IS",
"isDefault": false,
"createdAt": "2024-07-25T02:14:12.546Z"
}