- Payment Gateway Overview
- Payment Gateway Sign Up
- Payment Methods
- Supported Integrations
- Payment Gateway APIs
- Web Integration
- Server to Server Integration
- Test Card Details
- Authorization
- Orders
- Payments
- Refunds
- Settlements
- Split Settlements
- E-Commerce Plugins
- Payment Links
- Payment Button
- Qr Code
- UPI Mandate
Cancel QR Code
Developing
PATCH
/api/v0/qr-code/{qrCodeId}/cancel
Request
Path Params
qrCodeId
string
required
Header Params
merchantAccessKey
string
optional
Authorization
string
optional
Body Params application/json
object {0}
Example
{}
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 PATCH '/api/v0/qr-code//cancel' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
response_code
integer <int32>
optional
response_message
string
optional
payload
object (QrCodeResponse)
optional
qrCodeId
string
optional
qrName
string
optional
multipleUse
boolean
optional
fixedAmount
boolean
optional
amount
number
optional
description
string
optional
expiry
string
optional
customParams
object
optional
status
enum<string>
optional
Allowed values:
ACTIVECANCELLED
qrCodeBase64
string
optional
createdOn
string
optional
modifiedOn
string
optional
customerName
string
optional
customerEmail
string
optional
customerMobile
string
optional
customerId
string
optional
referenceNumber
string
optional
Example
{
"response_code": 0,
"response_message": "string",
"payload": {
"qrCodeId": "string",
"qrName": "string",
"multipleUse": true,
"fixedAmount": true,
"amount": 0,
"description": "string",
"expiry": "string",
"customParams": {
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string"
},
"status": "ACTIVE",
"qrCodeBase64": "string",
"createdOn": "string",
"modifiedOn": "string",
"customerName": "string",
"customerEmail": "string",
"customerMobile": "string",
"customerId": "string",
"referenceNumber": "string"
}
}
Modified at 2024-10-10 08:31:41