POST
/
api
/
refund
curl --request POST \
  --url https://api.atoa.me/api/refund \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "paymentRequestId": "<string>",
  "amount": 123,
  "currency": "<string>",
  "refundNotes": "<string>"
}'
{
    "refundId": "a7c82e45-9f31-42b6-8d15-7e63f1b92c4d",
    "paymentRequestId": "5e8b2c73-1f64-4a97-9c38-d2f6ae15b8c2",
    "paymentIdempotencyId": "ATOA1234567890123",
    "status": "INITIATED",
    "paidAmount": "250.75",
    "refundAmount": "25.50",
    "currency": "GBP",
    "refundNotes": "Customer requested refund",
    "orderId": "987654321",
    "createdAt": "2023-11-15T14:32:45.789Z",
    "updatedAt": "2023-11-15T14:32:45.789Z"
}

Instant refunds are only available for selected merchants with same day payout functionality. Please reach out to support if you want to enable refunds in your account.

This API creates a refund for a specific successful payment. The refunded amount is credited to the customer’s source bank account via a bank transfer within 30 minutes, provided that you have sufficient balance available in your account.

Authorization

Bearer <token>

Request Body Schema

paymentRequestId
string
required

The payment request ID of the transaction that needs to be refunded. Only completed payments can be refunded.
Note: If you need to know how to generate a payment request ID, refer to Process payment .

amount
number
required

Amount to be refunded (should not exceed the original transaction amount). Decimal values are allowed. Minimum value is 1.

currency
string

The currency of the refund amount. If not specified, the currency of the original transaction will be used. Example: “GBP”.

refundNotes
string

Refund reason for your internal reference.

Response

refundId
string

The unique identifier for the refund transaction. You can use this ID to cancel the refund later via the Cancel Refund API.

paymentRequestId
string

The ID of the original payment request that is being refunded.

paymentIdempotencyId
string

The idempotency ID of the original payment, used to ensure the payment was processed only once.

status
string

The current status of the refund request (e.g., “INITIATED”, “COMPLETED”, “FAILED”).

paidAmount
string

The original amount that was paid in the transaction being refunded.

refundAmount
string

The amount being refunded to the customer.

currency
string

The currency code for the refund transaction (e.g., “GBP”).

refundNotes
string

Notes or reason provided for the refund.

orderId
string

The order ID associated with the original transaction.

updatedAt
string

The timestamp when this refund request was last updated.

createdAt
string

The timestamp when this refund request was created in the system.