Skip to main content

Refunds

Refunds allow the reversal of payments made using either Pay By Bank or Card. Multiple partial refunds can also be created up to the amount of the original payment.

info

Please note that refunds can only be made for pay-ins, and will be to the same destination where the pay-in originated. The destination for a refund cannot be changed.

Creating a Refund

To issue a refund for a particular payment, you'll need to ensure that the following conditions are met:

  • A refund must be associated with a Stitch payment request.
  • The payment must be in the completed state.
  • The refund amount must be less than or equal to the original payment amount.

Refund creation is protected by a client token. You'll need to follow the steps described in the client token guide to obtain a client token with the client_refund scope.

To create the request, a GraphQL mutation is used to specify:

  • The requested refund amount
  • The refund reason
  • A nonce to determine uniqueness
  • A reference that the beneficiary of the refund will see on their statement (for Pay By Bank refunds)
  • The ID of the payment request being refunded

To initiate a refund for either our Pay By Bank or Card products, please refer to the below examples and note that the mutation is different per product.

For Pay By Bank refunds, please note that the funds to refund the transaction will be debited from an associated intermediary float account.

Refunds for Clients Settling into an Intermediary Account

Although a refund may be created at any point in time, Stitch will only process it once the original payment amount has cleared. In some cases, it could take up to 3 days for money to reflect in the destination account.

If the refund is made immediately after the payment is completed, it could take significantly longer to reflect (i.e. 3 days to clear in our account and another 3 days to clear in the destination beneficiary's account).

note

The refund clearing type allows you to specify either "INSTANT" or "DEFAULT". Leaving it empty will default to the latter. See the table below for more information.

Refund Clearing Types

TypeDescription
INSTANTAttempt to clear this payment with the bank immediately, within bank processing hours. If submitted after bank cutoff, it will rollover to the next business day. This method may incur an additional cost.
DEFAULTAttempt to clear this payment with the bank on the same day. If submitted after the bank's cutoff time, it will rollover to the next business day. It can take up to 3 days to clear in the destination beneficiary's account.

You will need the refund id from the response to look up the status of the request in the API, so it should be retained for later usage.

The refund id will also be included in the webhook subscription payload. This is illustrated in the refund webhooks section below.

Retrieving Refund Status

When receiving a callback from the refund creation, you will likely want to check the status of the refund. Using the query below you can retrieve the status of a given refund by id.

To retrieve the status of a refund, as described above, you'll need a client token with the client_refund scope.

As an alternative to querying a refund by its id, it is possible to query by the nonce value that was provided when creating the refund. This is done by specifying the nonce as a filter, as shown in the example below:

Retrieving All Refunds

Should you want to list all refunds attempted on your client, you can run the following query, provided you have a client token with the client_refund scope.

You can also further refine the above query to only show refunds in a certain status. For example, the below query will list all refunds in the status RefundError. For more options, you can filter at the top level on the refunds node, just like in the example below.

Refund Statuses

When a Pay By Bank refund is initially created, the request's status will be RefundPending. Once the refund is successfully requested at the bank, to be made back to the payer, this status will change to RefundSubmitted.

Once successfully processed at the bank and funds have left the intermediary account, the status will be updated to RefundCompleted.

The RefundPaused status indicates that we can no longer continue processing the refund until certain conditions are met. These conditions are outlined in the table below.

ReasonDescription
insufficient_fundsThere are insufficient funds in the account.

The RefundError status indicates that the refund has failed, and includes a reason explaining the cause. Possible failure reasons are detailed below:

ReasonDescription
bank_errorThere was a problem communicating with the processing bank.
bank_processing_errorAn internal error occurred inside the bank while trying to process the transaction.
insufficient_fundsThe account from which the payout was to be made had insufficient_funds for longer than the allowed duration
restricted_accountThere was a restriction on the account. This could be anything from FICA compliance to the account being manually frozen.
inactive_accountThe account is inactive. This can be remedied by reactivating it.
exceeded_limitA limit was exceeded.
invalid_accountThe account was not found. It may have been closed or cannot process this type of transaction.
beneficiary_bank_processing_errorThe recipient bank did not accept the transaction. Common causes are the beneficiary bank not responding to an RTC payment within the required 60 seconds, or not being enrolled for RTC.
invalid_transaction_detailsThe details (e.g. account number or branch code) were rejected by the bank.
payment_not_receivedThe payment associated with the refund has not yet been received.
invalid_destination(Deprecated) The provided beneficiary account is invalid.
internal_error(Deprecated) An unknown error has occurred processing the payout into the provided beneficiary account.

Subscribing to Refund Webhooks

To receive a webhook upon payment completion or failure you will need to create a subscription for your client. Please note that this will always send a signed webhook for your refund requests. You can read more about how to verify the signature within the webhook event in our more detailed guide here

If the subscription is successfully created, the body returned by the request will look like the sample in the Example Response tab in widget above. The value in the secret field will be used to verify the webhook event signature, and should be kept in a secure place like an environment variable.

For more information on receiving webhook events, listing active webhook subscriptions, unsubscribing from webhooks and validating signed webhook subscriptions, please visit the Webhooks page.

Error Handling for Refunds

Errors may arise when a refund is not requested correctly, or with information that aligns with the original payment request to be refunded. An example response of a failed refund creation can be found below:

{
"errors": [
{
"message": "The payment associated with this refund is pending. The payment must be completed before a refund can be issued.",
"locations": [
{
"line": 77,
"column": 3
}
],
"path": ["clientRefundInitiate"],
"extensions": {
"code": "PAYMENT_INCOMPLETE",
"reason": "PENDING"
}
}
],
"data": null
}

The below table describes possible errors, messages, and reasons:

ScenarioError CodeMessageReason (if applicable)
Refund requested for non-existent paymentNOT_FOUNDCould not find paymentRequest for this refund
Refund requested with previously-used nonceNONCE_DUPLICATEA refund request with this nonce has already been issued. Expected nonce to be unique.
Refund requested for payment that is still pendingPAYMENT_INCOMPLETEThe payment associated with this refund is pending. The payment must be completed before a refund can be issued.PENDING
Refund requested for payment that is cancelledPAYMENT_INCOMPLETEThe payment associated with this refund was marked as cancelled. The payment must be completed before a refund can be issued.CANCELLED
Refund requested for payment that is expiredPAYMENT_INCOMPLETEThe payment associated with this refund is expired. A refund cannot be issued.EXPIRED
Refund amount requested is higher than original payment amountBAD_USER_INPUTExpected refund amount to be less than or equal to the original payment amount.
Refund amount requested is higher than total amount of all refunds for paymentBAD_USER_INPUTExpected sum total of requested refunds amount to be less than or equal to the original payment amount.
No intermediary account is setup to process refunds fromACCOUNT_NOT_FOUNDNo intermediary account details have been configured for this client. Please contact support@stitch.money to resolve this issue.

Simulating Refund Scenarios

To simulate some common scenarios when using your test client, see the table below with requirements to simulate each scenario.

Simulation ScenarioSimulated StatusSimulation Requirements
A successful refundRefundCompleted-> amount.quantity < 400
-> Wait approximately 2 minutes before querying the refund status
A failed refund due to a bank processing errorRefundError, with reason bank_processing_error-> amount.quantity = 400
-> Wait approximately 2 minutes before querying the refund status
A failed refund due to an inactive accountRefundError, with reason inactive_account-> amount.quantity = 401
-> Wait approximately 2 minutes before querying the refund status
A failed refund due to an invalid accountRefundError, with reason invalid_account-> amount.quantity = 402
-> Wait approximately 2 minutes before querying the refund status
A paused refundRefundPaused, with reason insufficient_funds-> amount.quantity > 404
Top up of a float account, to allow a paused refund to continue to be successfully processedRefundPaused initially, which becomes RefundCompleted-> amount.quantity = 404
-> Wait approximately 3 minutes before querying the refund status