Update Client Address

Update an existing client address.

PATCH /client-address/{id}
Path Parameters
Parameter Type Description
id string Address ID
Request Body Fields

All fields are optional. Only include fields you want to update.

Example Request - Update Address
PATCH /api/v1.0/client-address/501
{
  "address": {
    "thoroughfare": "456 Broadway",
    "premise": "Suite 100"
  }
}
Example Request - Set as Default Address
PATCH /api/v1.0/client-address/501
{
  "default_address": true
}
Example Request - Update Address Types
PATCH /api/v1.0/client-address/501
{
  "address_types": ["billing"]
}
Response
{
  "data": [{
    "id": "501",
    "client": "123",
    "address": {
      "country": "US",
      "administrative_area": "NY",
      "locality": "New York",
      "postal_code": "10001",
      "thoroughfare": "456 Broadway",
      "premise": "Suite 100",
      "first_name": "John",
      "last_name": "Doe",
      "name_line": "John Doe"
    },
    "updated": "2025-10-30T10:00:00Z"
  }]
}
Back to Addresses List