- Explore Our Product Suite
- Payment Gateway
- Payouts
- Prepaid Cards
- About Prepaid Card
- Key Capabilities
- Getting Started
- APIs
- API Access & Authorization
- Encryption & Decryption Guide
- Auth Token
- Create Card Account
- Create Gift Card
- Create Prepaid Card
- Set Card PIN
- Load Card Balance
- Get Card Account Details
- Generate Card OTP
- View Card Details
- Card Usage Controls
- Get Card Usage Limits
- Request Card Replacement
- Block Card
- Order Physical Card
- Get Card Details
- Get Transaction Details
- Get All Transaction details
- Bharat Connect (BBPS)
- About Bharat Connect
- Invoice Payments
- Invoice
- Payment
- Financing
- Onboarding
- cdNote
- Purchase Order
- webhook-invoice
- webhook-payments
- webhook-business-onboarding
- webhook-financing
- webhook-cdNote
- Webhook Purchase Order
- Webhook Send Purchase Order Request
- Webhook Send Purchase Order Response
- Webhook Confirm Purchase Order Request
- Webhook Confirm Purchase Order Response
- Webhook Edit Purchase Order Request
- Webhook Edit Purchase Order Response
- Webhook Status Change Purchase Order Request
- Webhook Status Change Purchase Order Response
- Bill Payments
- Bill Payments Overview
- Utility API Response Handling
- Get Authentication TokenPOST
- Get BillerTypesGET
- Get BillersGET
- Fetch BillPOST
- Create Bill APIPOST
- Create Bill Without Bill FetchPOST
- Bill PaymentPOST
- Utility Bill Approval APIPUT
- Get Utility Bill StatusGET
- Get Utility Bill by Reference IdGET
- Get Utility Bills DetailPOST
- Bill Payment WebhookPOST
- Accounts Payable
- Account Receivable
- Expense Management
- Rewards & Incentives
- Verification Suite
Fetch Bill
POST
/api/v2/biller/fetchOrAddBill
Company Biller Apis
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
billerId
integer <int32>
required
circle
enum<string>
optional
Allowed values:
APASMBIHCHEDELGUJHARHPJKKKKERKOLMAHMPMUMNEORIPUNRAJTNUPEUPWWBALLAGRAAHMBHIWANDISURATSHILMUMBRAKALWA
billParams
object
required
cn
string
required
ad1
string
optional
ad2
string
optional
Additional properties
string
optional
remarks
string
optional
keyContactEmail
string
optional
Example
{
"billerId": 0,
"circle": "AP",
"billParams": {
"cn": "string",
"ad1": "string",
"ad2": "string"
},
"remarks": "string",
"keyContactEmail": "string"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://test.your-api-server.com/api/v2/biller/fetchOrAddBill' \
--header 'Content-Type: application/json' \
--data-raw '{
"billerId": 0,
"circle": "AP",
"billParams": {
"cn": "string",
"ad1": "string",
"ad2": "string"
},
"remarks": "string",
"keyContactEmail": "string"
}'
Responses
🟢200OK
application/json
Body
response_code
string
required
response_message
string
required
payload
object (BillFetchV2Response)
required
companyBillerId
string
required
billNumber
string
required
billAmount
integer
required
billdate
string
required
dueDate
string
required
billPeriod
string
required
billnetamount
integer
required
maxBillAmount
integer
required
minBillAmount
integer
required
earlyPaymentAmount
integer
required
earlyPaymentDate
string
required
latePaymentAmount
integer
required
actualDueDate
string
required
statusMessage
string
required
billId
string
required
billStartDate
string
required
billEnddate
string
required
utilityEnkashId
string
required
referenceId
string
required
billParams
object
required
Example
{
"response_code": 0,
"response_message": "string",
"payload": {
"companyBillerId": "string",
"billNumber": "string",
"billAmount": 0,
"billdate": "2025-06-02",
"dueDate": "2025-06-02",
"billPeriod": "string",
"billnetamount": 0,
"maxBillAmount": 0,
"minBillAmount": 0,
"earlyPaymentAmount": 0,
"earlyPaymentDate": "2025-06-02",
"latePaymentAmount": 0,
"actualDueDate": "2025-06-02",
"statusMessage": "string",
"billId": "string",
"billStartDate": "2025-06-02",
"billEnddate": "2025-06-02",
"utilityEnkashId": "string",
"referenceId": "string",
"billParams": {
"cn": "string",
"ad1": "string",
"ad2": "string"
}
}
}
Modified at 2025-06-02 15:34:21