List all Addresses.
GET/addresses
Returns a list of your Addresses. The addresses are returned sorted by creation date, with the most recent appearing first.
Permissions
The API token must include the following scopes: Numbers.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
links
object
self string
first string
next string
prev string
data object[]
{
"links": {
"self": "string",
"first": "string",
"next": "string",
"prev": "string"
},
"data": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"label": "My Address",
"country": "US",
"first_name": "Emmett",
"last_name": "Brown",
"street_number": "1640",
"street_name": "Riverside Drive",
"address_type": "Apartment",
"address_number": "42",
"city": "Alexandria",
"state": "CA",
"postal_code": "91905"
}
]
}
Loading...