IdAddressesAddressid
Update a customers address
Update a customers address. Authorise with a JWT
PUT
/v1/customers/{id}/addresses/{addressid}
AuthorizationBasic <token>
Basic Authorization header using the Bearer scheme.
In: header
Authorization<token>
JWT Authorization header using the Bearer scheme.
In: header
Path Parameters
idstring
addressidinteger
Format
int32
title?string | null
firstName?string | null
lastName?string | null
addressLine1?string | null
addressLine2?string | null
addressLine3?string | null
city?string | null
postcode?string | null
county?string | null
countryIso?string | null
stateId?integer
Format
int32
stateName?string | null
companyName?string | null
Response Body
curl -X PUT "https://loading/v1/customers/string/addresses/0" \ -H "Content-Type: application/json" \ -d '{}'
{
"success": true,
"errors": [
{
"description": "string"
}
]
}
{
"message": "string",
"code": 0
}
{
"succeeded": true,
"errors": [
{
"message": "string"
}
]
}
How is this guide?