List addresses
GET/openapi/2026-07/customers/:customer_id/addresses
Retrieve a list of all address with pagination.
Request
Path Parameters
Customer ID
Query Parameters
Cursor for pagination
Number of records per page. The default value is 10, and the maximum allowed value is 250
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
error code
error message
data object
addresses object[]
Array containing address objects
Address ID
ID of the customer this address belongs to
First name of the consignee
Last name of the consignee
Company name
City of the address
Province or state of the address
Country name of the address
Postal or ZIP code
Province code
ISO country code
Gender of the consignee
Phone number associated with the address
Area code of the phone number
Area or region of the address
Email associated with the address
Full name of the consignee
Primary street address
Secondary street address
Full name of the country
Indicates if this is the default address
The cursor for the next page of results
Whether there are more records
{
"code": "string",
"message": "string",
"data": {
"addresses": [
{
"id": "string",
"customer_id": "string",
"first_name": "string",
"last_name": "string",
"company": "string",
"city": "string",
"province": "string",
"country": "string",
"zip": "string",
"province_code": "string",
"country_code": "string",
"gender": "string",
"phone": "string",
"phone_area_code": "string",
"area": "string",
"email": "string",
"name": "string",
"address1": "string",
"address2": "string",
"country_name": "string",
"default": true
}
],
"cursor": "string",
"has_more": true
}
}