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
    • Prepaid Plan
      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

Prepaid Plan

Developing
GET
/api/v0/biller/plan-MDM

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Request Code 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 GET 'https://pay-en-uat.enkash.in/api/v0/biller/plan-MDM' \
--header 'Authorization: Bearer <token>'

Responses

🟢200
application/json
Body

Example
{
    "response_code": 0,
    "response_message": "string",
    "payload": {
        "planDetails": [
            {
                "planDescription": "string",
                "billerId": "string",
                "categoryType": "string",
                "amount": 0,
                "type": "string",
                "talkTime": "string",
                "validity": "string",
                "circle": "string",
                "data": "string"
            }
        ]
    }
}
Modified at 2025-11-24 09:51:41
Previous
Fetch Biller Categories
Next
Fetch Bulk Bill Details
Built with