The Spanish version is the authoritative reference. View in Spanish
GetBillerSubRanges
GET /GetBillerSubRanges?countryId={countryId}&accountCode={accountCode}&billerId={billerId}
The Administration API URL for the environment (SBX or PRD) must be prepended as the base.
Gets the numbering sub-ranges associated with a specific biller, with its interval (numberFrom / numberTo), the last consumed number (actualNumber), and its status.
| Parameter | Location | Req. | Description |
|---|---|---|---|
countryId | query | Required | ISO country code |
accountCode | query | Required | Company tax ID (TaxId) |
billerId | query | Required | Biller ID |
GetBillerSubRanges
[
{
"countryId": "cl",
"accountCode": "{{taxId}}",
"subRangeId": "{{subRangeId}}",
"primaryRangeId": "{{primaryRangeId}}",
"billerId": "{{billerId}}",
"dateTimeTimestamp": "{{timestamp}}",
"documentTypeId": 1,
"series": null,
"actualNumber": 10,
"actualNumberLastUpdate": "{{timestamp}}",
"actualNumberLastUpdateSource": "System",
"numberFrom": 1,
"numberTo": 10,
"dateTo": null,
"author": "System",
"deleted": false,
"status": 5,
"data": null
},
{
"countryId": "cl",
"accountCode": "{{taxId}}",
"subRangeId": "{{subRangeId}}",
"primaryRangeId": "{{primaryRangeId}}",
"billerId": "{{billerId}}",
"dateTimeTimestamp": "{{timestamp}}",
"documentTypeId": 1,
"series": null,
"actualNumber": 20,
"actualNumberLastUpdate": "{{timestamp}}",
"actualNumberLastUpdateSource": "System",
"numberFrom": 11,
"numberTo": 20,
"dateTo": null,
"author": "System",
"deleted": false,
"status": 7,
"data": null
}
]