Enkash Developer Portal
Home
Home
Login
  1. Device Binding
  • Back to home
  • APIs - Wallet
  • KYC Status Handling Guide
  • T&C Acceptance Flow
  • Encryption & Decryption Guide
  • Device Binding
    • Generate Device Binding
      POST
    • Device Binding Status
      POST
  • Authentication
    • Auth Token
  • Wallet Setup
    • Create Wallet
    • Update Wallet Details
    • VKYC Link Generation
    • VKYC Status
  • Wallet Management
    • Add Money to Wallet
    • Wallet Top-Up from Balance
    • Wallet Funding Limit Validation
    • Generate Transaction OTP
    • Get Transaction Details
    • Get Wallet Balance
    • Get Wallet Details
    • Get Wallet Details Copy
  • Fund Transfers
    • Add Beneficiary
    • Search Beneficiaries
    • IMPS Fund Transfer
    • Wallet To Wallet Fund Transfer
    • Get Fund Transfer Status
  • Merchant Payments
    • Debit Wallet for Merchant Transaction
    • Merchant Settlement Status
  • Webhooks
    • Payment Notify Request
Home
Home
Login
  1. Device Binding

Device Binding Status

Developing
POST
/api/v1/partner/device-bind/status

Request

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

Body Params application/jsonRequired

Example
{
  "deviceId": "0D5249C7-5D42-48AC-A8C2-79EE90D2560D",
  "appVersion": "6.2",
  "osVersion": "Android 14",
  "model": "Pixel 7",
  "manufracture": "Google",
  "platform": "android",
  "simProvider": "airtel",
  "mobileNumber": "9674603714",
  "deviceIp": "192.168.1.10",
  "deviceImei": "356789123456789"
}

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 POST 'https://pay-en-uat.enkash.in/api/v1/partner/device-bind/status' \
--header 'partnerId: CRM338L2H' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "deviceId": "0D5249C7-5D42-48AC-A8C2-79EE90D2560D",
  "appVersion": "6.2",
  "osVersion": "Android 14",
  "model": "Pixel 7",
  "manufracture": "Google",
  "platform": "android",
  "simProvider": "airtel",
  "mobileNumber": "9674603714",
  "deviceIp": "192.168.1.10",
  "deviceImei": "356789123456789"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "response_code": 0,
    "response_message": "Success",
    "payload": {
        "status": "Pending"
    }
}
Modified at 2026-02-09 11:15:37
Previous
Generate Device Binding
Next
Authentication
Built with