Anchor to customerAddressUpdatecustomer
customerAddressUpdate
mutation
Requires access scope.
Update a customer's address information.
Anchor to Arguments
Arguments
- Anchor to addressaddress•Mailing
Address requiredInput! Specifies the fields to use when updating the address.
- Anchor to addressIdaddress•
Id ID!required The ID of the address to update.
- Anchor to customerIdcustomer•
Id ID!required The ID of the customer whose address is being updated.
- Anchor to setAsDefaultset•
As Default Whether to set the address as the customer's default address.
Was this section helpful?
Anchor to CustomerAddressUpdatePayload returnsCustomerAddressUpdatePayload returns
- Anchor to addressaddress•
The updated address.
- Anchor to userErrorsuser•
Errors [UserError!]! non-null The list of errors that occurred from executing the mutation.
Was this section helpful?
Mutation Reference
mutation customerAddressUpdate($address: MailingAddressInput!, $addressId: ID!, $customerId: ID!, $setAsDefault: Boolean) {
customerAddressUpdate(address: $address, addressId: $addressId, customerId: $customerId, setAsDefault: $setAsDefault) {
address {
# MailingAddress fields
}
userErrors {
field
message
}
}
}
Input
{
"address": {
"address1": "<your-address1>",
"address2": "<your-address2>",
"city": "<your-city>",
"company": "<your-company>",
"countryCode": "",
"firstName": "<your-firstName>",
"lastName": "<your-lastName>",
"phone": "<your-phone>",
"provinceCode": "<your-provinceCode>",
"zip": "<your-zip>"
},
"addressId": "gid://shopify/<objectName>/10079785100",
"customerId": "gid://shopify/<objectName>/10079785100",
"setAsDefault": true
}
{
"address": {
"address1": "<your-address1>",
"address2": "<your-address2>",
"city": "<your-city>",
"company": "<your-company>",
"countryCode": "",
"firstName": "<your-firstName>",
"lastName": "<your-lastName>",
"phone": "<your-phone>",
"provinceCode": "<your-provinceCode>",
"zip": "<your-zip>"
},
"addressId": "gid://shopify/<objectName>/10079785100",
"customerId": "gid://shopify/<objectName>/10079785100",
"setAsDefault": true
}
input MailingAddressInput {
address1: String
address2: String
city: String
company: String
country: String
countryCode: CountryCode
firstName: String
id: ID
lastName: String
phone: String
province: String
provinceCode: String
zip: String
}