Skip to main content

HTTP responses

HTTP STATUS

The API uses HTTP responses to indicate success or error.

HTTP statusDescriptionDetail description
200OK- Standard response for successful HTTP requests.
202Accepted- The request has been accepted for processing, but the processing has not been completed.
400Bad Request- Invalid JSON request
- Business logic error
- No operation/data permission
- Parameter error
401Unauthorized- OAuth token/API key is missing or invalid/expired.
404Not Found- The requested resource could not be found but may be available in the future.
429Too Many Requests- The user has sent too many requests in a given amount of time.
500Server Error- Internal service error.

RESPONSE BODY OBJECT

PropertyTypeDescription
codeintegerService status code, represents the status code of the API response. It is used to indicate the result of the request and whether it was successful or encountered an error.
messagestringProvides a human-readable description of the result or error encountered during the API request.
dataobjectContains the actual data returned by the API request.

SERVICE STATUS

Service status codeDescriptionDetail Description
0OKRequest successful
10000SYSTEM_ERRORInternal service error.
10001BAD_REQUEST- Invalid JSON request
- Business logic error
- Parameter error
10002UNAUTHORIZEDOAuth token/API key is missing or invalid/expired.
10003NO_PERMISSIONNo operation/data permission
10004EMAIL_NOT_VERIFIEDThe user's mailbox is not verified
10005PLAN_EXHAUSTEDExceed the plan usage limit
10006TOO_MANY_REQUESTSThe user has sent too many requests in a given amount of time.

RESPONSE EXAMPLE

JSON
{
"code": 0,
"message": "success",
"data": {
"id": "jkdakdqc1vb",
"name": "Aaron",
"email": "[email protected]",
"defaultWorkspaceId": "7e3ydi936o",
"timezone": "UTC",
"language": "en",
"emailVerified": true,
"emailVerifiedAt": "2023-06-02 08:09:12",
"createdAt": "2023-06-02 08:06:08",
"updatedAt": "2023-06-18 00:21:16"
}
}