addresses / #70
- userId
-
Niko Wisozk @niko_wisozk
- label
- other
- recipient
- Clifford Hayes MD
- street1
- 9296 Howard Road
- street2
- —
- city
- Jillianland
- region
- Missouri
- postalCode
- 95843-1836
- countryAlpha2
- FI
- isDefault
- false
- createdAt
Component variants
Medium
other
#70
Small
addresses/70 Related
References
curl -sS \
"https://example-data.com/api/v1/addresses/70" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/addresses/70"
);
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/70"
);
const addresse = (await res.json()) as Addresse;import requests
res = requests.get(
"https://example-data.com/api/v1/addresses/70"
)
addresse = res.json() {
"id": 70,
"userId": 56,
"label": "other",
"recipient": "Clifford Hayes MD",
"street1": "9296 Howard Road",
"street2": null,
"city": "Jillianland",
"region": "Missouri",
"postalCode": "95843-1836",
"countryAlpha2": "FI",
"isDefault": false,
"createdAt": "2024-09-24T05:52:01.965Z"
}