Post Payment Actions
We're still working on this section. More detailed information is coming soon.
Cancel Payment
We're still working on this section. More detailed information is coming soon.
Refund Payment
The Refund method is used to refund the original captured transaction. The funds of the captured transaction are returned to the shopper card/account.
You can refund the full amount of the original transaction, or a partial amount.
You can also perform multiple refund requests, up to the entire amount of the original transaction.
Make a POST /pay-ins/{authorizationId}/refund
request:
curl --location --request POST 'https://sandbox.unipaas.com/platform/pay-ins/{authorizationId}' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer --PRIVATE_KEY--'
Capture Payment
Authorization reserves a specific amount on a card for capturing at a later date, usually within seven days.
Get Payment Status
Make a GET /pay-ins/{authorizationId}
request:
curl --location --request GET 'https://sandbox.unipaas.com/platform/pay-ins/{authorizationId}' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer --PRIVATE_KEY--'
Updated over 3 years ago