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

Search QR Code

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

Request

Query Params
offset
integer 
optional
limit
integer 
optional
<= 5000
orderBy
string 
optional
direction
enum<string> 
optional
Allowed values:
ASCDESC
Header Params
merchantAccessKey
string 
optional
authorization
string 
optional
Body Params application/json
qrCodeId
string 
optional
qrCodeName
string 
optional
amount
number 
optional
status
string 
optional
referenceNumber
string 
optional
Example
{
    "qrCodeId": "string",
    "qrCodeName": "string",
    "amount": 0,
    "status": "string",
    "referenceNumber": "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/search' \
--header 'Content-Type: application/json' \
--data-raw '{
    "qrCodeId": "string",
    "qrCodeName": "string",
    "amount": 0,
    "status": "string",
    "referenceNumber": "string"
}'

Responses

🟢200Success
application/json
Body
response_code
integer <int32>
optional
response_message
string 
optional
payload
object 
optional
recordsCount
integer <int64>
optional
data
array[object (QrCodeResponse) {19}] 
optional
Example
{
    "response_code": 0,
    "response_message": "string",
    "payload": {
        "recordsCount": 0,
        "data": [
            {
                "qrCodeId": "string",
                "qrName": "string",
                "multipleUse": true,
                "fixedAmount": true,
                "amount": 0,
                "description": "string",
                "expiry": "string",
                "customParams": {
                    "additionalProp1": "string",
                    "additionalProp2": "string",
                    "additionalProp3": "string"
                },
                "status": "string",
                "qrCodeBase64": "string",
                "createdOn": "string",
                "modifiedOn": "string",
                "createdBy": "string",
                "modifiedBy": "string",
                "customerName": "string",
                "customerEmail": "string",
                "customerMobile": "string",
                "customerId": "string",
                "referenceNumber": "string"
            }
        ]
    }
}
Previous
Create QR Customer
Next
Get QR Code
Built with