Responses:

ParametersFormatDescription

result

Object

Result of a request that contains information

-error_code

uint

Error code

-message

String

Error description

-account_status

uint

Account status. Learn more in the Account Status Guide

-additional_data

Object

Additional information to be returned depending on the service (This field may vary depending on the service)

Example:

200: OK

{
    "result":{
        "error_code" : 0,
        "message": "Success",
        "account_status": 1,
        "additional_data":{}
    }
}

Example of a response to unsuccessful request:

{
    "result":{
        "error_code" : 5010,
        "message": "Internal Server Error",
        "account_status": 0,
        "additional_data": null
    }
}

Last updated