| Time | Status | User Agent |  |
| :-- | :-- | :-- | :-- |
| Make a request to see history. |

#### URL Expired

The URL for this request expired after 30 days.

### Customer Details

- **customer_id**  
  *string*  
  *required*  
  ID of the Customer

- **Update an existing customer**

- **address_line_one**  
  *string*  
  *required*  
  Address line one.

- **address_line_two**  
  *string*  
  Address line two.

- **address_city**  
  *string*  
  *required*  
  Address city.

- **address_state**  
  *string*  
  *required*  
  Address state.

- **address_zip**  
  *string*  
  *required*  
  Five digit zipcode or nine digit 'ZIP+4'.

- **address_country_code**  
  *string*  
  *enum*  
  ISO 3166-1 alpha-2 country code for the customer.
  
  US, GB, CA, etc. (Full list omitted for brevity)

- **name_prefix**  
  *string*  
  Prefix to the customer's name.

- **name_first**  
  *string*  
  Customer's first name.

- **name_middle**  
  *string*  
  Customer's middle name.

- **name_last**  
  *string*  
  Customer's last name.

- **name_suffix**  
  *string*  
  Suffix to the customer's name.

- **customer_type**  
  *string*  
  *enum*  
  The customer can be either a person or a business.
  
  Allowed: `person`, `business`

- **verification_status**  
  *string*  
  *enum*  
  The verification status of this customer. The default is 'unverified'.
  
  Allowed: `unverified`, `verified`, `retry`, `document`

- **phone_number**  
  *string*  
  Customer's phone number in E.164 format.

- **ssn**  
  *string*  
  Social security number of the customer.

- **title**  
  *string*  
  Title of the customer if a person OR title of the admin if a business.

- **international_customer_id**  
  *string*  
  Any country-specific unique identifier for the customer.

- **email**  
  *string*  
  The Customer's email address.

- **date_of_birth**  
  *date*  
  Customer's date of birth in ISO 8601 format.

- **business_details**  
  *object*  
  Business details as an object.

### Responses

- `200`  Successful query of information for a specific customer  
- `401`  Unauthorized.  
- `403`  Forbidden.  
- `404`  Customer not found  
- `422`  Invalid input  
- `429`  Too many requests.  
- `default`  Unexpected Error.

### Example Request

```shell
curl --request PUT \
     --url https://contact/sales/to/enable/your/sandbox/customers/ \
     --header 'accept: application/json' \
     --header 'content-type: application/json'
```

### Click `Try It!` to start a request and see the response here!  
Or choose an example:

### Response Format

```json
200
Updated about 1 year ago
```
