POST
/
chargeRequests
curl --request POST \
  --url https://api.paycashless.com/v1/chargeRequests \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "expiry": "<string>",
  "type": "qr",
  "qr": {
    "intentType": "static",
    "merchantId": 123,
    "merchantAccountId": 123,
    "merchantAccountNumber": "<string>",
    "merchantBankCode": "<string>",
    "merchantCategoryCode": "<string>",
    "countryCode": "<string>",
    "merchantName": "<string>",
    "merchantCity": "<string>",
    "postalCode": "<string>",
    "amount": 123,
    "currency": "<string>",
    "storeLabel": "<string>",
    "customerLabel": "<string>",
    "terminalLabel": "<string>",
    "reference": "<string>",
    "narration": "<string>",
    "merchantChannel": "<string>"
  }
}'
{
  "id": "<string>",
  "qr": {
    "intentType": "static",
    "merchantId": 123,
    "merchantAccountId": 123,
    "merchantAccountNumber": "<string>",
    "merchantBankCode": "<string>",
    "merchantCategoryCode": "<string>",
    "countryCode": "<string>",
    "merchantName": "<string>",
    "merchantCity": "<string>",
    "postalCode": "<string>",
    "amount": 123,
    "currency": "<string>",
    "storeLabel": "<string>",
    "customerLabel": "<string>",
    "terminalLabel": "<string>",
    "reference": "<string>",
    "narration": "<string>",
    "merchantChannel": "<string>",
    "checksum": "<string>"
  },
  "token": "<string>",
  "url": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Charge request
expiry
string
required

When QR code should expire eg. never, 1h, 2h, 3h...

type
enum<string>
required

Type of payment

Available options:
qr
qr
object
required

Content of the QR code

Response

200
application/json
Charge request created
id
string

Charge request unique identifier

qr
object

QR code contents

token
string

A unique token of the QR code

url
string

Payment link to insert as content of the QR code