Error codes in Modeling API

This section lists all possible error response codes that could be sent from the Zoho Analytics server on failure of Modeling APIs. You can use this for appropriate error handling.

ERROR CODES

Error-CodeReasonSolution
7101Workspace with the same name exists already.Provide an alternate name.
7103The Workspace Name mentioned in the API URL does not exist.Check the Workspace name in the request URL and provide a valid Workspace name.
7105View name specified in the Workspace does not exist.Provide a valid view name.
7107The column is not present in the specified Zoho Analytics Table.Provide the correct name of the column to be deleted in the ZOHO_COLUMNNAME parameter.
7111A Table with the name already exists in this Workspace.Provide an alternate name.
7128The column with the same name is already exists in the Zoho Analytics Table.Provide the different name for the ZOHO_COLUMNNAME parameter.
7138The view name specified in the API request URL does not exist.Check the view name in the request URL and provide a valid view name.
7144Mentioned Folder is not present in this Workspace.Check if the mentioned folder is available.
7159The column to be deleted is used in Reports, Formula Columns, Query Tables, etc.The column with dependent views cannot be deleted. Please delete the dependent views and formula columns associated with this column before calling this delete column API.
7161The Zoho Analytics Table specified in this API is a system table (created for Service Integration).Adding columns into System Table is not allowed. You could only add columns in a non-system table using this API.
7165The Workspace specified is a system Workspace (dedicated Workspace created for other Zoho Service integrations) which cannot be deleted.The system Workspace cannot be deleted.
7277The specified view holds dependent views.Set ZOHO_DELETE_DEPEND_VIEWS as true.
8023You do not have required permission to perform this operation.Kindly contact our support team.
8024Copy Workspace operation not allowed.Check the Workspace key provided in the url.
8025Invalid Custom Domain.Provide a valid domain name.
8504The required parameter is not proper or has not been sent.Send the parameter with valid data.
8506The mentioned parameter has been sent more than the required count.Check and remove that extra parameter mentioned in the response.
8516Invalid value passed in the mentioned parameter.Provide the valid data to the mentioned parameter.
8533The user email address provided in the URL is an improper format.Provide a valid email address.
8534Invalid JSON Format.Provide a valid JSON data.
15000A table which is needed to copy the specified report is missing in the destination Workspace.Check the destination Workspace and create the missing tables.
15001A column which is needed to copy the specified report is missing in the destination Workspace.Check the destination Workspace and create the column before copying the report.
15002A formula column which is needed to copy the specified report is missing in the destination Workspace.Check the destination Workspace and create the formula column before copying the report.
15005The report name specified already exists in the destination Workspace.Check whether the report with the same name exists in the destination Workspace. Try renaming the source report or the report in destination Workspace and invoke the API again.
15007Insufficient privileges to copy the report.Check whether the Copy Workspace Key is valid.
15009The formula column name specified already exists in the destination Workspace.Check whether the formula column is already copied, otherwise, try renaming the formula column in the source table or in the destination Workspace and invoke the API again.
15010The Formula Column name specified in the API request is not present in the Source Table.Check the formula column name(s) specified in the ZOHO_FORMULATOCOPY parameter is correct.
15012The reports specified in the API request is not present in the Source Workspace.Check the reports specified in the ZOHO_VIEWTOCOPY parameter are correct and are available.
15018The table to be copied have more than two hundred thousand rows.Set ZOHO_HUGEDATACOPY as true.

In case of any error other than the above said, mail the API request URL parameters and error response details to support@zohoanalytics.com. Zoho Analytics Team will get back to you with the best possible solution.

Sample Error:

Copied<responseuri="/api/EmailAddress/WorkspaceName"action="COPYDATABASE">
    <error>
        <code>7103</code>
        <message>
        Workspace not found! Please check whether the Workspace exists
        </message>
    </error>
</response>
Copied{"response":
    {"uri": "\/api\/email\/WorkspaceName",
        "action": "COPYDATABASE",
        "error":
        {"code":7103,
        "message": "Workspace not found! Please check whether
                               the Workspace exists"}}}