addresses / #159
- userId
-
Jennifer Hoeger @jennifer.hoeger
- label
- other
- recipient
- Della Shields
- street1
- 94082 Maple Avenue
- street2
- —
- city
- Lake Kiarraberg
- region
- New Hampshire
- postalCode
- 28500-1085
- countryAlpha2
- US
- isDefault
- true
- createdAt
Component variants
Medium
other
#159
Small
addresses/159 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/159" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/159"
);
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/159"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/159"
)
addresse = res.json() {
"id": 159,
"userId": 119,
"label": "other",
"recipient": "Della Shields",
"street1": "94082 Maple Avenue",
"street2": null,
"city": "Lake Kiarraberg",
"region": "New Hampshire",
"postalCode": "28500-1085",
"countryAlpha2": "US",
"isDefault": true,
"createdAt": "2024-09-14T12:33:58.753Z"
}