addresses / #50
- userId
-
Gwendolyn Wyman @gwendolyn.wyman87
- label
- shipping
- recipient
- Philip Rempel MD
- street1
- 827 8th Street
- street2
- Suite 945
- city
- Marquardttown
- region
- Virginia
- postalCode
- 77724-4127
- countryAlpha2
- CL
- isDefault
- true
- createdAt
Component variants
Medium
shipping
#50
Small
addresses/50 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/50" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/50"
);
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/50"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/50"
)
addresse = res.json() {
"id": 50,
"userId": 40,
"label": "shipping",
"recipient": "Philip Rempel MD",
"street1": "827 8th Street",
"street2": "Suite 945",
"city": "Marquardttown",
"region": "Virginia",
"postalCode": "77724-4127",
"countryAlpha2": "CL",
"isDefault": true,
"createdAt": "2024-12-26T00:36:33.914Z"
}