Skip to main content

PaymentErrors

Payment-related result codes and error codes.

If an error code appears that is not listed here, contact integration@paysafecard.com.

resultCodes object[]
  • Array [
  • resultNamestring
    Example: resultCode
    valuestring
    Example: 0
    descriptionstring
    Example: successful
  • ]
  • errorCodes object[]
  • Array [
  • codestring
    Example: Duplicate transaction id
    numberinteger
    Example: 2001
    httpStatusinteger
    Example: 400
    descriptionstring
    Example: Transaction already exists.
  • ]
  • PaymentErrors
    {
    "resultCodes": [
    {
    "resultName": "resultCode",
    "value": "0",
    "description": "successful"
    }
    ],
    "errorCodes": [
    {
    "code": "Duplicate transaction id",
    "number": 2001,
    "httpStatus": 400,
    "description": "Transaction already exists."
    }
    ]
    }