The Spanish version is the authoritative reference. View in Spanish
AddBiller
POST /AddBiller
The Administration API URL for the environment (SBX or PRD) must be prepended as the base.
Creates a new biller in the account. It is used when registering new branches, POS, or issuing points.
| Parameter | Type | Req. | Description |
|---|---|---|---|
billerType | int | Required | Biller profile. 2 = centralized (number by number). |
name | string | Required | Biller name |
description | string | Required | Biller description |
author | string | Required | User who performs the operation (audit) |
countryId | string | Required | ISO country code |
accountCode | string | Required | Company tax ID (TaxId) |
accountName | string | Required | Company legal name |
smartRefill | boolean | Required | Smart refill: sub-ranges are refilled automatically |
source | string | Required | Origin of the operation (audit) |
Under construction
The billerType value table for the local profile is pending confirmation. smartRefill only applies to centralized billers: a local-type biller with smartRefill: true is rejected with a 409 error.
AddBiller
{
"billerType": 2,
"name": "Biller-Documentacion",
"description": "Biller de ejemplo",
"author": "user@empresa.com",
"countryId": "cl",
"accountCode": "{{taxId}}",
"accountName": "Nombre Empresa",
"smartRefill": true,
"source": "Postman"
}