addresses / #142
- userId
-
Allan Buckridge @allan_buckridge
- label
- shipping
- recipient
- Micheal Koepp
- street1
- 722 Schroeder Loop
- street2
- Suite 150
- city
- Madonnaboro
- region
- Ohio
- postalCode
- 42984
- countryAlpha2
- GB
- isDefault
- true
- createdAt
Component variants
Medium
shipping
#142
Small
addresses/142 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/142" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/142"
);
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/142"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/142"
)
addresse = res.json() {
"id": 142,
"userId": 106,
"label": "shipping",
"recipient": "Micheal Koepp",
"street1": "722 Schroeder Loop",
"street2": "Suite 150",
"city": "Madonnaboro",
"region": "Ohio",
"postalCode": "42984",
"countryAlpha2": "GB",
"isDefault": true,
"createdAt": "2024-07-17T09:29:16.657Z"
}