Enkash Developer Portal
Home
Home
Login
  1. APIs
  • Back to home
  • Bill Payment
  • APIs
    • Generate Authentication Token
      POST
    • Fetch Current Bill
      POST
    • Fetch Biller List
      GET
    • Fetch Biller Categories
      GET
    • Fetch Bulk Bill Details
      POST
    • Get Utility Bill By Reference ID
      GET
    • Get Utility Bill Status
      GET
    • Confirm Debit for Bill Payment
      PUT
    • Initiate Bill Payment via EnKash PG
      POST
    • Create Bill Without Bill Fetch
      POST
    • Create Bill After Successful Bill Fetch
      POST
  • Webhook
    • Setup Webhook Endpoint
  1. APIs

Confirm Debit for Bill Payment

PUT
/api/v0/utilityPayment/status
📌
Use this API to confirm the debit of funds from your EnKash account for a bill payment.
This API is typically used when you want to manually approve bills for payment, providing greater control over when funds are deducted.
If your configuration is set to automatically debit funds upon bill creation, calling this API is not required, as the debit would process during the bill creation process.

Request

Body Params application/json
utilityPaymentIds
array[string]
required
List of bills to approve for debit funds
>= 1 items<= 1000 items
approvalStatus
enum<string> 
optional
Fix value: CHECKER_APPROVED
Allowed value:
CHECKER_APPROVED
remarks
string 
optional
Optional remarks
Match pattern:
^[A-Za-z0-9 ,@#$%^&*+:;?!()\-_"'`]{1,255}$
Example
{
    "utilityPaymentIds": [
        "string"
    ],
    "approvalStatus": "CHECKER_APPROVED",
    "remarks": "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 PUT 'https://test.your-api-server.com/api/v0/utilityPayment/status' \
--header 'Content-Type: application/json' \
--data-raw '{
    "utilityPaymentIds": [
        "string"
    ],
    "approvalStatus": "CHECKER_APPROVED",
    "remarks": "string"
}'

Responses

🟢200Success
application/json
Body
response_code
integer 
required
response_message
string 
required
payload
null 
optional
Example
{
    "response_code": 0,
    "response_message": "Success",
    "payload": null
}
Modified at 2025-07-08 20:06:16
Previous
Get Utility Bill Status
Next
Initiate Bill Payment via EnKash PG
Built with