Skip to content

Suggested

API Dashboard
GET /customers/{customer-id}

Get a customer

GET/customers/{customer-id}
Get 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 retrieve.

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
GET /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
Response
{
  "id": "string",
  "firstName": "string",
  "email": "string",
  "lastName": "string",
  "phoneNumber": "string",
  "phoneNumberPrefix": "string",
  "documentType": "string",
  "documentNumber": "string",
  "address": {}
}