Errors

Ezeebit API error responses

Most common API error responses are described below. Error response must be identified by HTTP status and reason attribute in your application.

Please note that specific API methods (for example Create Order) have their own errors (e.g. 422 Unprocessable Entity - when order is not valid).

See Common Issues for troubleshooting.

Error status code

Code
Reason
Description

301

Incorrect signature result

Incorrect field data

400

param error

Parameter error

500

server error

Server error

10001

Incorrect signature result

Incorrect field data

10002

Timestamp for this request is outside of the time window.

Incorrect time

10003

API identity key not found or invalid.

Invalid identity

10004

The IP address is invalid

Invalid IP address

10005

API identity key format invalid.

Invalid identity

10006

Invalid request, content length too large

Invalid request

10007

Permission denied

Permission denied

10008

Store number not found

Incorrect store number

10009

The payment id cannot be found

Payment id cannot be found

10010

The transaction order number is duplicate

Duplicate transactions

10011

Duplicate store name

Duplicate store name

10012

Store unavailable

Store not found

10013

SubMerchant not found

Invalid submerchant

10014

Store not found

Store not found

10015

Duplicate subMerchant name

Duplicate submerchant

Response example:

{
    "code": 10015,
    "msg": "Duplicate subMerchant name",
    "data": null
}

Last updated