Refund Capture

The "Refunds" functionality allows external customers/users to request a refund of the amount paid. It is available through API or Front

API Refund Capture

PATCH {api_base_url}api/payin/{externalId}/refund

Headers

NameTypeDescription

Authorization *

String

JWT token in format Bearer eyJ0... For more information about authentication, please refer to Authentication

Request Body

NameTypeDescription

externalId*

String

An ID that is meaningful to you and your system. Must be unique.

comment

String

Add any relevant information

{
    "externalId": "XXXX",
    "internalId": "{{InternalId}}",
    "status": {
        "code": "902",
        "description": "REFUNDED",
        "detail": "The payin was refunded"
    }
}
curl --location --request PATCH 'https://api.stage.localpayment.com/api/payin/{{externalId}}/refund' \
--header 'x-client-code: 0000' \
--header 'Content-Type: application/json' \
--header 'Authorization:{{Token_Generated}}' \
--data  '{
    "comment": "Refund API Credit Card"
}'

Manual Transaction Refund Capture

Last updated