Skip to content

Suggested

API Dashboard
PATCH /customers/{customer-id}

Create customer

PATCH/customers/{customer-id}
Patch customer

Bearer access token returned by the authentication endpoint.

The API key used for authentication when making requests to the API Gateway.

API version selector for Conomy endpoints. Use 24-04-2025 for the current version.

Identifies the application making the request.

Unique identifier of the customer to update.

Unique identifier for the internal service.

Payer's name

Payer's email

Payer's last name

Payer's phone number without prefix

Phone number prefix (e.g., +57)

Documeny type of the entity (e.g., RUT, CURP, CURL). Go to the Supported Identity document types page for the complete list of supported values.

The document number associated with the documentType

The entity’s address information.

administrativeAreaLevel1string

The first-level administrative division.

administrativeAreaLevel2string

The second-level administrative division.

administrativeAreaLevel3string

The third-level administrative division.

streetstring

The name of the street.

streetNumberstring

The street number.

optionalAddressstring

Additional address details.

countrystring

Country of operations for the entity, specified using the ISO 3166-1 alpha-3 standard (e.g., CHL, USA, MEX). Go to the countries page for the complete list of supported values.

zipcodestring

Zipcode f the address

idstring

Unique identifier for the internal service.

firstNamestringrequired

Payer's name

emailstring

Payer's email

lastNamestring

Payer's last name

phoneNumberstring

Payer's phone number without prefix

phoneNumberPrefixstring

Phone number prefix (e.g., +57)

documentTypestring

Documeny type of the entity (e.g., RUT, CURP, CURL). Go to the Supported Identity document types page for the complete list of supported values.

documentNumberstring

The document number associated with the documentType

addressobject

The entity’s address information.

Request
PATCH /sandbox/customers/{customer-id} HTTP/1.1
Host: api.conomyhq.com
Authorization: Bearer {ACCESS_TOKEN}
x-api-key: {YOUR_API_KEY}
conomyhq-api-version: 24-04-2025
User-Agent: MyApp/1.0
Content-Type: application/json

{
  "id": "string",
  "firstName": "string",
  "email": "string",
  "lastName": "string",
  "phoneNumber": "string",
  "phoneNumberPrefix": "string",
  "documentType": "string",
  "documentNumber": "string",
  "address": {}
}
Response
{
  "id": "string",
  "firstName": "string",
  "email": "string",
  "lastName": "string",
  "phoneNumber": "string",
  "phoneNumberPrefix": "string",
  "documentType": "string",
  "documentNumber": "string",
  "address": {}
}