Status code list
Note
These are business codes returned in the JSON body: { code, msg, data? }. Typically, code = 1000 indicates success; otherwise, check msg for details.
Code
Description
1000
Success
1001
Invalid appId
1002
appId is disabled
1003
sign error
1004
username already exists
1005
username does not exist
1006
the api is not authorized
1007
expiration time is invalid
Response examples
// Success
{
"code": 1000,
"msg": "OK"
}
// Error - invalid appId
{
"code": 1001,
"msg": "Invalid appId"
}Last updated
