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

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

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