Skip to main content

Payout Error Response

Error response returned by PaysafeCard payout operations.

Payout error codes

CodeNumberHTTP statusDescription
customer_balance_exceeded3167400Customer balance exceeded.
topup_limit_exceeded3170400Add-up limit exceeded.
customer_yearly_payout_limit_reached3194400Customer yearly payout limit exceeded.
customer_details_mismatched3195400Customer details from the request do not match the stored details.
mypsc_account_not_found3162400No customer account was found using the provided credentials.
max_amount_of_payout_merchants_reached3198400The maximum number of payout merchant clients is already assigned to the account.
max_payout_merchant_clients_assigned3197400The maximum number of payout accounts is already assigned to the customer ID.
kyc_invalid_for_payout_customer3168400Payout rejected because account registration is incomplete.
missing_parameter3150400A mandatory parameter is missing.
merchant_not_allowed_for_payout3161400The merchant is not allowed to perform this action.
duplicate_payout_request3164400The transaction already exists.
invalid_amount3165400Invalid payout amount.
merchant_limit_reached3166400The merchant's daily payout limit was reached.
payout_id_collision3169400The payout ID collides with an existing disposition ID.
payout_amount_below_minimum3171400The payout amount is below the merchant's minimum payout amount.
customer_inactive or customer_not_active3193400Customer account is not active.
payout_blocked3199400The payout was blocked for security reasons.

Other errors may be communicated as a general technical error.

codestringrequired

Machine-readable payout error code.

Example: customer_balance_exceeded
messagestringrequired

Human-readable description of the payout error.

Example: Customer balance exceeded.
numberintegerrequired

Numeric payout error identifier.

Example: 3167
paramstringnullable

Request parameter associated with the error, when applicable.

Example: amount
Payout Error Response
{
"code": "customer_balance_exceeded",
"message": "Customer balance exceeded.",
"number": 3167,
"param": "amount"
}