This endpoint allows you to create a full or a partial refund over a completed deposit.
Headers
Name
Type
Description
Content-Type
string
application/json
X-Date
string
ISO8601 Datetime with Timezone: yyyy-MM-dd'T'HH:mm:ssZ
X-Login
string
Merchant X-Login API Key
Authorization
string
Authorization control hash
X-Idempotency-Key
string
Unique idempotency key
Request Body
Name
Type
Description
deposit_id
integer
Directa24 deposit_id. It is obtained when creating the deposit
invoice_id
string
The invoice_id you sent while creating the deposit or the merchant_invoice_id auto-generated by us
amount
number
Amount to refund. If none is sent, the full deposit amount is assumed
bank_account
object
Object containing the information of the beneficiary. Not needed for credit cards
comments
string
Commentaries about the refund, if any
notification_url
string
HTTPS URL used to send the notifications about refund's change of status
{
"refund_id": 168284
}
{
"code": 802,
"description": "Amount to refund not valid",
"type": "INVALID_AMOUNT_TO_REFUND"
}
{
"code": 208,
"description": "Resource not found",
"type": "RESOURCE_NOT_FOUND"
}
Description
The refunds endpoint allows you to create a full refund over a Credit Card deposit in completed state or full/partial refunds over other payment methods' deposits in completed state.
In the case of credit cards, since the refund will be processed to the same card, all you need to send are the fields to identify the deposit.
You can create as many refunds as needed over a completed deposit, as long as the total amount of those refunds doesn't exceed the original amount deposited.
Refunds Request
In order to start creating refunds, you need to:
Send the request with POST method.
Specify a valid deposit_id and invoice_id related to the deposit to be refunded.
When the refund is made over a CREDIT CARD deposit, it might be (depending upon availability) completed instantaneously, and so all the details of the refund are returned.
In case the result is SUCCESS, it means the refund was successfully created and the user should receive the money back into their card soon.
In case the result is REJECTED, the response of the API will return two fields called reason and reason_code providing more information about the rejection reason.
Error Responses Example
// Invalid amount to refund. The amount is bigger than the deposit or
// it has been already refunded
{
"code": 802,
"description": "Amount to refund not valid",
"type": "INVALID_AMOUNT_TO_REFUND"
}
// The object_bank account needs to be sent
{
"code": 804,
"description": "Missing bank account information",
"type": "MISSING_BANK_ACCOUNT"
}
// The deposit_id and/or the merchant_invoice_id didn't belong to a deposit
{
"code": 208,
"description": "Resource not found",
"type": "RESOURCE_NOT_FOUND"
}