Lists customers with filtering and pagination options.
/customersHeaders
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.
Query parameters
Comma separated id to list customers for.
Comma separated type to list customers for.
Comma separated identityId to list customers for.
Specifies the maximum number of items to return in a single request.
A cursor indicating the position of the last retrieved item.
A cursor indicating how many items to skip from the request
Responses
paginationobjectrequiredCursor-based pagination metadata (limit, cursor, hasMore).
countintegerrequiredcount of items shown up to the moment
nextintegerrequirednext cursor to be used in offset to display the next page
previousintegerrequiredprevious cursor to be used in offset to display the previous page
totalintegerrequiredtotal count of items to be shown
resultsobject[]requiredItems from the current page
idstringUnique identifier for the internal service.
firstNamestringrequiredPayer's name
emailstringPayer's email
lastNamestringPayer's last name
phoneNumberstringPayer's phone number without prefix
phoneNumberPrefixstringPhone number prefix (e.g., +57)
documentTypestringDocumeny type of the entity (e.g., RUT, CURP, CURL). Go to the Supported Identity document types page for the complete list of supported values.
documentNumberstringThe document number associated with the documentType
addressobjectThe entity’s address information.
administrativeAreaLevel1stringThe first-level administrative division.
administrativeAreaLevel2stringThe second-level administrative division.
administrativeAreaLevel3stringThe third-level administrative division.
streetstringThe name of the street.
streetNumberstringThe street number.
optionalAddressstringAdditional address details.
countrystringCountry 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.
zipcodestringZipcode f the address
GET /sandbox/customers 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{
"pagination": {
"count": 0,
"next": 0,
"previous": 0,
"total": 0
},
"results": [
{
"firstName": "string"
}
]
}