- Payment Gateway Overview
- Payment Gateway Sign Up
- Payment Methods
- Supported Integrations
- Payment APIs
- Test Card Details
- Authorization
- Orders
- Payments
- Refunds
- Payment Links
- Settlements
- QR Generation API
- Payment Button
- 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"
}
}