Error Codes in Bulk API
This section lists all possible error codes that could be sent from the Analytics Plus server on failure of Bulk APIs. You can use this for appropriate error handling.
ERROR CODES
| Error-Code | Reason | Solution |
|---|---|---|
| 7103 | The workspace id mentioned in the API does not exist. | Provide the valid workspace id. |
| 7111 | A table with the same name already exist. | Provide an alternative name. |
| 7138 | The view id mentioned in the API URL does not exist. | Check the view id in the request URL and provide a valid view id. |
| 7232 | Import Aborted. | Check the error message returned. |
| 7235 | Not even a single column name provided in source file matches with the column data in table. | Check whether the column name in source data matches with column names present in analytics table.NOTE:Also check whether the config fileType is provided with proper value. |
| 7248 | The file content is not \"multipart/form-data\" format. | Check whether the file is passed as multipart-form data. |
| 7249 | The file cannot be imported. | Verify whether the file content is same as the "fileType" provided. |
| 7403 | Parsing of SQL query failed. | Check the SQL syntax provided is valid. |
| 7507 | Value entered in the mentioned column does not follow the specified data-type. | Check the value of that column and provide value in the specified data-type. |
| 7511 | Mentioned Column is a mandatory column. | Should specify the value for that mandatory column. |
| 8002 | Specified criteria is invalid. | Provide valid criteria. |
| 8004 | The column mentioned in the criteria is not present in the table. | Check the column name and provide valid name. |
| 8016 | You need to have at-least one column for INSERT or UPDATE action. | You should provide at-least one column with value. |
| 8046 | Not even one column in the selected columns list is valid. | Check whether the column name provided is present in the table. |
| 8119 | Invalid value provided for the attribute. | Check the value for the attribute provided is valid. |
| 8120 | Export job not found. | Check the export job id provided is valid and not expired. |
| 8121 | Export job not initiated. | Check the export job is completed before downloading the data. |
| 8122 | Export job not completed. | Check the export job is completed before downloading the data. |
| 8124 | Export job access denied. | Only the user created the job can access the job. |
| 8137 | Import job not found. | Check the import job id provided is valid and not expired. |
| 8138 | Import job access denied. | Only the user created the job can access the job. |
| 8504 | The required parameter is not proper or has not been sent. | Send the parameter with valid data. |
| 8506 | The mentioned parameter has been sent more than the required count. | Check and remove that extra parameter mentioned in the response. |
| 8513 | The file size is more than the supported size. | File size should be less than the mentioned size. |
| 8516 | Invalid value passed in the mentioned parameter. | Provide the valid data to the mentioned parameter. |
Sample Error:
CopiedHTTP/1.1 400 Bad Request
Content-Type:application/json;charset=UTF-8
{
"status": "failure",
"summary": "META_DBOBJECT_NAME_DUPLICATED",
"data": {
"errorCode": 7111,
"errorMessage": "A Table with the name Sales already exists in this workspace. Please provide an alternate name."
}
}