Skip to main content

Endpoint

POST /clients/settings/configure-billers

Headers

Authorization
string
required
Bearer YOUR_ACCESS_TOKEN
SECRET_KEY
string
required
Your API secret key.
businessId
string
required
Your business ID.

Request body

TODO — The source documentation did not specify the request body structure for this endpoint. Verify the following before publishing:
  • Confirm the exact request body fields (e.g. is it { "billers": ["044", "058"] } or a different shape?)
  • Confirm whether this replaces the full biller list or appends to it
billers
array
Array of bank code strings to enable for your account. Retrieve available codes from Get billers.

Response

status
boolean
true on success.
message
string
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"
}