addresses / #112
- userId
-
Phyllis Hyatt @phyllis_hyatt83
- label
- billing
- recipient
- Dave Tillman
- street1
- 80289 Upton Estates
- street2
- —
- city
- Fort Jessicaboro
- region
- Wyoming
- postalCode
- 10713
- countryAlpha2
- FJ
- isDefault
- true
- createdAt
Component variants
Medium
billing
#112
Small
addresses/112 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/112" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/112"
);
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/112"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/112"
)
addresse = res.json() {
"id": 112,
"userId": 84,
"label": "billing",
"recipient": "Dave Tillman",
"street1": "80289 Upton Estates",
"street2": null,
"city": "Fort Jessicaboro",
"region": "Wyoming",
"postalCode": "10713",
"countryAlpha2": "FJ",
"isDefault": true,
"createdAt": "2024-09-17T18:10:03.351Z"
}