Version: 202607
Get address
GET/openapi/2026-07/customers/:customer_id/addresses/:address_id
Retrieve details of a specific address using its unique identifier.
Request
Path Parameters
customer_id stringrequired
Customer ID
address_id stringrequired
Address ID
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
codestring
error code
messagestring
error message
data object
address object
The newly created address object
idstring
Address ID
customer_idstring
ID of the customer this address belongs to
first_namestring
First name of the consignee
last_namestring
Last name of the consignee
companystring
Company name
citystring
City of the address
provincestring
Province or state of the address
countrystring
Country name of the address
zipstring
Postal or ZIP code
province_codestring
Province code
country_codestring
ISO country code
genderstring
Gender of the consignee
phonestring
Phone number associated with the address
phone_area_codestring
Area code of the phone number
areastring
Area or region of the address
emailstring
Email associated with the address
namestring
Full name of the consignee
address1string
Primary street address
address2string
Secondary street address
country_namestring
Full name of the country
defaultboolean
Indicates if this is the default address
{
"code": "string",
"message": "string",
"data": {
"address": {
"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
}
}
}