addresses / #47
- userId
-
Lenny Howe @lenny.howe
- label
- home
- recipient
- Saul Mayer
- street1
- 64074 Alfonso Cliff
- street2
- —
- city
- La Mesa
- region
- Colorado
- postalCode
- 19065-5308
- countryAlpha2
- AU
- isDefault
- false
- createdAt
Component variants
Medium
home
#47
Small
addresses/47 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/47" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/47"
);
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/47"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/47"
)
addresse = res.json() {
"id": 47,
"userId": 37,
"label": "home",
"recipient": "Saul Mayer",
"street1": "64074 Alfonso Cliff",
"street2": null,
"city": "La Mesa",
"region": "Colorado",
"postalCode": "19065-5308",
"countryAlpha2": "AU",
"isDefault": false,
"createdAt": "2024-07-06T17:54:19.283Z"
}