EnKash API Document
HomePayment GatewayPayoutsCreate Account
HomePayment GatewayPayoutsCreate Account
Login
  1. Qr Code
  • Payment Gateway Overview
  • Payment Gateway Sign Up
  • Payment Methods
  • Supported Integrations
  • Payment APIs
  • Test Card Details
  • Authorization
    • About Authorization
    • Get Authorization Token
      POST
  • Orders
    • Order Overview
    • About Order
    • Create Order
      POST
    • Get Order Status
      GET
    • Get BNPL Payment Modes
      GET
  • Payments
    • Payment Overview
    • About Payment
    • Get Transaction Status
      GET
    • Submit Payment Detail
      POST
  • Refunds
    • About Refund
    • Refund
      POST
  • Payment Links
    • Upi Intent Link Detail
      GET
  • Settlements
    • About Settlement
    • Get Settlement Payout By Id
    • Search Settlement Payouts
  • QR Generation API
    • Get Dynamic QR Code
  • Payment Button
  • Qr Code
    • Create QR
      POST
    • Create QR Customer
      POST
    • Search QR Code
      POST
    • Get QR Code
      GET
    • Cancel QR Code
      PATCH
  1. Qr Code

Create QR Customer

Developing
POST
/api/v0/qr-code/customer

Request

Header Params
merchantAccessKey
string 
optional
authorization
string 
optional
Body Params application/json
customerName
string 
required
customerEmail
string 
optional
customerMobile
string 
optional
Example
{
    "customerName": "string",
    "customerEmail": "string",
    "customerMobile": "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 '/api/v0/qr-code/customer' \
--header 'Content-Type: application/json' \
--data-raw '{
    "customerName": "string",
    "customerEmail": "string",
    "customerMobile": "string"
}'

Responses

🟢200Success
application/json
Body
response_code
integer <int32>
optional
response_message
string 
optional
payload
object (CustomerResponse) 
optional
customerId
string 
optional
customerName
string 
optional
customerEmail
string 
optional
customerMobile
string 
optional
Example
{
    "response_code": 0,
    "response_message": "string",
    "payload": {
        "customerId": "string",
        "customerName": "string",
        "customerEmail": "string",
        "customerMobile": "string"
    }
}
Previous
Create QR
Next
Search QR Code
Built with