Error codes in Sharing API
This section lists all possible error codes that could be sent from the Analytics Plus server on failure of Sharing APIs. You can use this for appropriate error handling.
ERROR CODES
| Error-Code | Reason | Solution |
|---|---|---|
| 6028 | User is in inactive state. | Change user status to active. |
| 7003 | Required parameters are missing in the request. | Send all the required parameters related to that particular action. |
| 7103 | The workspace id mentioned in the API does not exist. | Provide the valid workspace id. |
| 7104 | The view id specified in the API does not exist. | Provide the valid view id. |
| 7105 | View name specified in the Workspace does not exist. | Provide a valid view name. |
| 7106 | View id not present in the Workspace. | Provide a valid view id. |
| 7282 | Group name already exist. | Provide a different group name. |
| 7301 | You (your full name) do not have the permission to do this operation. | Access as administrator or permitted user to perform the operation. |
| 7338 | Group does not belongs to current workspace. | Provide a valid group id. |
| 7387 | Workspaces does not belong to the user. | Provide a valid workspace id. |
| 8026 | Permission configuration missing. | Atleast any one of the following permission is required: [read, export, vud, drillDown, addRow, updateRow, deleteRow, deleteAllRows, importAppend, importAddOrUpdate, importDeleteAllAdd, share, discussion]. |
| 8027 | Mentioned workspace/view is not found. | Provide a valid workspace/view name. |
| 8078 | The mentioned attribute has an empty value. | Provide a valid JSON data. |
| 8079 | The mentioned attribute is not present in the JSON configuration. | Provide a valid JSON data. |
| 8504 | The required parameter is not proper or has not been sent. | Send the parameter with valid data. |
| 8518 | Invalid authentication. | Provide a valid OAuth token for API authentication. |
| 8535 | Invalid oauthtoken. | Provide a valid OAuth token. |
In case you encounter any other errors, please mail the API request URL parameters and error response details to
Sample Error:
CopiedHTTP/1.1 400 Bad Request
Content-Type:application/json;charset=UTF-8
{
"status": "failure",
"summary": "META_OBJECT_NOT_PRESENT",
"data": {
"errorCode": 7103,
"errorMessage": "Workspace not found! Please check whether the workspace exists."
}
}