Create address
POST/openapi/2026-07/customers/:customer_id/addresses
Create a new address with the provided details.
Request
Path Parameters
Customer ID
- application/json
- Body
- Example
Bodyrequired
address objectrequired
Address
Country name of the address, required at least 1 character. e.g "China"
ISO country code, required at least 1 character, e.g "CN" for China
The first name of the person receiving the shipment or package
The last name of the person receiving the shipment or package
This field represents the main address line, such as the house number and street name. It is used to specify the primary location of the address
This field represents an additional address line, such as an apartment number or suite number. It is used to provide more specific information about the location of the address
Area or region of the address
City of the address. This field specifies the name of the city or town where the address is located
Province or state of the address. This field specifies the administrative division or region within a country
Province code of the address. This field specifies the abbreviated or standardized code representing the province or state
Company name associated with the address
Phone number associated with the consignee
Area code for the phone number. This field specifies the code used to identify a specific geographic area for telephone calls
Postal or ZIP code of the address. This field specifies the code used to identify a specific geographic area for mail delivery
Gender of the person, optional field. Acceptable values are "male" and "female"
Email address for the consignee. This field is used to specify the email address of the person receiving the shipment or package
Indicates if this is the default address. "true" if this is the first address created for the user, otherwise "false"
{
"address": {
"country": "string",
"country_code": "string",
"first_name": "string",
"last_name": "string",
"address1": "string",
"address2": "string",
"area": "string",
"city": "string",
"province": "string",
"province_code": "string",
"company": "string",
"phone": "string",
"phone_area_code": "string",
"zip": "string",
"gender": "string",
"email": "string",
"default": true
}
}
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
error code
error message
data object
address object
Address
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
{
"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
}
}
}