The Spanish version is the authoritative reference. View in Spanish
GetBillerById
GET /GetBillerById?countryId={countryId}&accountCode={accountCode}&id={id}
The Administration API URL for the environment (SBX or PRD) must be prepended as the base.
Gets the information associated with a specific billerId within an account, including its refill configurations (configurations) and thresholds (thresholds).
| Parameter | Location | Req. | Description |
|---|---|---|---|
countryId | query | Required | ISO country code |
accountCode | query | Required | Company tax ID (TaxId) |
id | query | Required | Biller ID (billerId) |
GetBillerById
{
"billerId": "{{billerId}}",
"billerType": 2,
"name": "Biller-Documentacion",
"billingPoint": null,
"salePoint": null,
"description": "Biller de ejemplo",
"dateTimeTimestamp": "{{timestamp}}",
"author": "user@empresa.com",
"lastChangeAuthor": "user@empresa.com",
"lastChangeTimestamp": "{{timestamp}}",
"countryId": "cl",
"accountCode": "{{taxId}}",
"accountName": "Nombre Empresa",
"status": 1,
"statusDescription": null,
"enabled": true,
"smartRefill": true,
"deleted": false,
"deletedAuthor": null,
"deletedTimeStamp": null,
"source": "Postman",
"thresholds": [
{
"id": "{{thresholdId}}",
"documentTypeId": 39,
"documentTypeDescription": null,
"threshold": 150,
"author": "{{author}}",
"dateTimeTimestamp": "{{timestamp}}",
"lastChangeAuthor": null,
"lastChangeTimestamp": null,
"deleted": false,
"deletedAuthor": null,
"deletedTimeStamp": null
}
],
"configurations": [
{
"id": "{{configurationId}}",
"documentTypeId": 39,
"documentTypeDescription": null,
"refill": 250,
"author": "{{author}}",
"dateTimeTimestamp": "{{timestamp}}",
"lastChangeAuthor": null,
"lastChangeTimestamp": null,
"deleted": false,
"deletedAuthor": null,
"deletedTimeStamp": null
}
]
}