Idempotent Transaction Requests
Sample Sale Request
curl --location --request POST 'https://<PayEngine Host>/api/payment/sale' \
--header 'Authorization: Basic <Your Private Key>' \
--header 'Content-Type: application/json' \
--header 'request-key : <Unique Reqeust Key>' \
--data-raw '{
"merchant_id": "<Your Merchant ID>",
"data": {
"transaction_amount": "10.00",
"card_token": "<Your Card Token>",
}
}'Last updated