v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Customers

Overwrite customer

Overwrite some customer information. This endpoint allows you to mark the customer on the account as active or inactive using the is_active field. This field is informative only. There are no restrictions that prevent inactive customers from performing any actions.

If customer.is_active = true, and the Maximum number of card holders program parameter is set, this customer is counted in the account's maximum number of card holders limit.

If the customerId parameter is not set, the server returns "Cannot get property customerId on null object".

Note: If social_name and nickname are not passed, their values are overwritten as null.

This endpoint generates a Customer changed event.

put/accounts/v2/customers/{customerId}

Path parameters

customerIdinteger required
Example:12345

Customer ID

Request body

Example request

{
  "customer": {
    "printed_name": "Sarah Toga",
    "social_name": "Jack",
    "nickname": "Pinto",
    "is_active": true,
    "email": "jenna.flect@email.com"
  }
}

Response

OK