Endpoint
POST /clients/settings/configure-billers
Request body
TODO — The source documentation did not specify the request body structure for this endpoint. Verify the following before publishing:
Array of bank code strings to enable for your account. Retrieve available codes from Get billers.
Response
Confirmation message, e.g. "Billers has been updated".
Code examples
curl -X POST https://sandbox.stellasbank.com/api/v1/clients/settings/configure-billers \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "SECRET_KEY: YOUR_SECRET_KEY" \
-H "businessId: YOUR_BUSINESS_ID" \
-H "Content-Type: application/json" \
-d '{
"billers": ["044", "058", "011"]
}'
Example response
{
"status": true,
"message": "Billers has been updated"
}