Request POS Receipt

Use this API to send POS payment receipt to customer via email or SMS

Request a payment receipt

POST /api/payment-pos/receipt

Send the payment receipt to a customer

Request Body

Name
Type
Description

reference*

String

Your payment reference

payment_code*

String

Payment code of payment

email*

String

Customer email to send payment receipt

mobile

String

Customer mobile to send payment receipt e.g. "41231223123"

dial_code

String

Dial code e.g. "+61"

key*

String

Merchant's

Terminal API ID

hash*

String

MD5 Hash

key+reference+api_secret OR key+payment_code+api_secret

{
    "status": "ok",
    "message": "Payment receipt has been sent",
    "email": "[email protected]",
    "sms": "+614123122312"
}

Please Note: You can only send one of reference or payment_code and your hash must include that value.

For example, if you send reference your hash must be key+reference+api_secret. If you send payment_code your hash must be key+payment_code+api_secret

Last updated