Skip to main content

Refund

POST /refund

This endpoint is used to refund a transaction either partially or fully.

info

If you're unsure whether the authorization has been captured and want to issue a full refund, consider using the 'Reverse' action.

You can perform partial refunds only on transactions. For partial refunds on authorizations, use 'Adjust Authorization'.

Test URL

The refund request will be made to the following URL:

https://checkout-api.staging.straumur.is/api/v1/modification/refund

This call will create an refund request for the specified amount on the intended transaction.

Request Example

{
"reference": "9990QQAZ1221",
"payfacReference": "5215125152151259990QQAZ1"
"amount": 1000,
"currency": "ISK",
"refundReason": "FRAUD"
}

Request Body Fields

FieldTypeRequiredDescriptionExampleMin LengthMax Length
referenceStringRequiredMerchant reference to uniquely identify a payment.9990QQAZ12211100
payfacReferenceStringRequiredStraumur reference to uniquely identify a payment.5215125152151259990QQAZ11100
amountIntegerRequiredThe amount to be charged in minor units.127300--
currencyStringRequiredThe three-character ISO currency code.ISK33
refundReasonStringOptionalMerchant's reason for the refund.CUSTOMER REQUEST-100
warning

You are not required to send a refund reason, however, if you do, we only support these values:

  • OTHER
  • RETURN
  • DUPLICATE
  • FRAUD
  • CUSTOMER REQUEST

If you provide a value outside of this range, the system will return an error.

Example - Received Response

info

Status Received means that the system has acknowledged your request and will process it.

After completion, you will receive a final response through a webhook.

{
"status": "Received",
"payfacReference": "ASDAKOS125152",
"responseDateTime": "2024-09-04T09:50:14.343503Z",
"responseIdentifier": "e3605f81-6b09-4ce1-83ad-5a8d49f3cd44"
}

Error Response

Our error responses are standardised. Please see Errors.

You can also find a detailed overview of our HTTP Status Codes.