PixelWave

Error Codes

API error codes and their meaning

Response Status

The result.status field indicates the overall outcome:

StatusMeaning
successRequest processed successfully
warningRequest failed — check error codes

Error Codes

The result.codeError and result.codeErrorExt fields provide details:

codeError Values

CodeDescription
noneNo error
validationErrorRequest validation failed
internalErrorInternal server error

codeErrorExt Values

CodeDescriptionAction
noneNo error
internalErrorUndefined internal errorRetry or contact support
invalidRequestParametersMissing or invalid required fieldsCheck request body
duplicateIdentifieridTransactionMerchant already usedUse a unique identifier
noSuitableTariffForRequestNo tariff configured for this amount/methodContact your manager
noPaymentDetailsAvailableNo payment details available from providersRetry later or try different method
notEnoughMoneyOnBalanceInsufficient balance for payoutTop up your balance
fraudFraud detected by antifraud systemTransaction blocked

Error Response Example

{
  "result": {
    "status": "warning",
    "x-request-id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "codeError": "none",
    "codeErrorExt": "noPaymentDetailsAvailable",
    "message": "Not found available payment details"
  },
  "data": null,
  "totalNumberRecords": 0
}

Common Issues

noPaymentDetailsAvailable

All providers are currently busy or unavailable for the requested amount and payment method. Try again in a few seconds or use a different payment method.

duplicateIdentifier

You've already created an operation with this idTransactionMerchant. Each operation must have a unique merchant transaction ID. Use the Operations API to check the existing operation's status.

notEnoughMoneyOnBalance

Your merchant balance is insufficient for the requested payout amount. Top up your balance first.

noSuitableTariffForRequest

Your merchant account doesn't have a tariff configured for the requested payment method or amount range. Contact your PixelWave manager.

On this page