Skip to main content

Refund Error Codes

The following errors can occur when processing a PaysafeCard refund.

CodeNumberHTTP StatusDescription
General technical error10007500A general technical error occured. Please contact the PaysafeCard support team for assistance.
Missing mandatory parameter3150400Self explanatory - I.E: "Missing mandatory parameter CustomerIdentifier" if the parameter "CustomerIdentifier" is missing in the refund request.
Merchant not allowed to perform this action3161400The merchant account has not been activated for the usage of refunds. Please contact your account manager or the integration team to inquire about the status of refund activation for your account.
Duplicate refund request3164400Transaction already exists. We only allow unique values for refund requests.
Invalid amount3165400Invalid amount.
Merchant limit reached3166400Merchants limit reached. For refunds this may occur at the beginning of a new invoicing cycle whenever a transaction from the previous cycle is refunded.
Refund id collides with existing disposition id3169400We do not allow the refund ID to be the same as a previously used payment ID. Please use unique identifiers.
Merchant refund exceeds original transaction3179400The requested amount for a refund must not exceed the original payment's amount.
Merchant refund original transaction is in invalid state3180400The original payment is not in a valid state. The original payment has to be in state "O" for a refund to be possible.
Merchant refund missing transaction3184400No transaction found with provided payment ID.

The numeric error identifier, HTTP status, and error description should be used together to determine why the refund request failed.

codestring

Textual refund error code.

Example: General technical error
numberinteger

Numeric refund error identifier.

Example: 10007
httpStatusinteger

HTTP status returned for the refund error.

Example: 500
descriptionstring

Explanation of the refund error.

Example: A general technical error occured. Please contact the PaysafeCard support team for assistance.
Refund Error Codes
{
"code": "General technical error",
"number": 10007,
"httpStatus": 500,
"description": "A general technical error occured. Please contact the PaysafeCard support team for assistance."
}