The Spanish version is the authoritative reference. View in Spanish
UpdateBiller
POST /UpdateBiller
The Administration API URL for the environment (SBX or PRD) must be prepended as the base.
Updates the information of an existing biller: name, description, smart refill, or activation/deactivation (enabled).
| Parameter | Type | Req. | Description |
|---|---|---|---|
billerId | string (UUID) | Required | ID of the biller to update |
countryId | string | Required | ISO country code |
accountCode | string | Required | Company tax ID (TaxId) |
accountName | string | Required | Company legal name |
name | string | Required | Biller name |
description | string | Required | Biller description |
author | string | Required | User who performs the operation (audit) |
smartRefill | boolean | Required | Smart refill (centralized billers only) |
enabled | boolean | Required | Activates or deactivates the biller |
source | string | Required | Origin of the operation (audit) |
UpdateBiller
{
"billerId": "{{billerId}}",
"countryId": "cl",
"accountCode": "{{taxId}}",
"accountName": "Nombre Empresa",
"name": "Biller-Documentacion_actualizado",
"description": "Biller de ejemplo actualizado",
"author": "user@empresa.com",
"smartRefill": false,
"enabled": true,
"source": "Postman"
}smartRefill on local billers
A local-type biller does not support smartRefill: true; the attempt returns the 409 error shown in the example.