{ "opencollection": "1.0.0", "info": { "name": "Helpcenter Modeling APIs API", "version": "1.0.0" }, "items": [ { "info": { "name": "Modeling APIs", "type": "folder" }, "items": [ { "info": { "name": "Create Workspace", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Create a blank workspace in the specified organization." }, { "info": { "name": "Copy Workspace", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" }, { "name": "ZANALYTICS-DEST-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "Workspace ID to be copied" } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Copy the specified workspace to another org or within the same org." }, { "info": { "name": "Rename Workspace", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace to rename" } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Renames the specified workspace." }, { "info": { "name": "Delete Workspace", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace to delete" } ] }, "docs": "Deletes the specified workspace." }, { "info": { "name": "Create Table", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/tables", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "Workspace ID" } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Create a table in the specified workspace." }, { "info": { "name": "Create Query Table", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/querytables", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "Workspace ID" } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "This API allows you to create a query table using a SQL SELECT query." }, { "info": { "name": "Edit Query Table", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/querytables/:table-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "Workspace ID" }, { "name": "table-id", "value": "", "type": "path", "description": "Query Table ID" } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "This API allows you to update an existing query table using a SQL SELECT query." }, { "info": { "name": "Create Report", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/reports", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "Workspace ID" } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "This API allows you to create a report (chart/table/pivot) in a workspace." }, { "info": { "name": "Update Report", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/reports/:report-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "Workspace ID" }, { "name": "report-id", "value": "", "type": "path", "description": "Report ID" } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "This API allows you to update the metadata or design of an existing report." }, { "info": { "name": "Save As View", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/saveas", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "This API creates a new view by duplicating an existing one." }, { "info": { "name": "Move Views To Folder", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/movetofolder", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Moves multiple views into a specified folder." }, { "info": { "name": "Rename View", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Renames an existing view." }, { "info": { "name": "Delete View", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Moves the view to trash." }, { "info": { "name": "Restore Trash View", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/trash/:view-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Restores a view from trash." }, { "info": { "name": "Delete Trash View", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/trash/:view-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Permanently deletes a view from trash." }, { "info": { "name": "Create Folder", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/folders", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Create a folder under a specified workspace to organize views." }, { "info": { "name": "Rename Folder", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/folders/:folder-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "folder-id", "value": "", "type": "path", "description": "ID of the folder." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Rename an existing folder in the workspace." }, { "info": { "name": "Delete Folder", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/folders/:folder-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "folder-id", "value": "", "type": "path", "description": "ID of the folder." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Delete a folder from the workspace. Optionally delete views within." }, { "info": { "name": "Make Default Folder", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/folders/:folder-id/default", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "folder-id", "value": "", "type": "path", "description": "ID of the folder." } ] }, "docs": "Set the specified folder as the default folder for a given view type." }, { "info": { "name": "Change Folder Hierarchy", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/folders/:folder-id/move", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "folder-id", "value": "", "type": "path", "description": "ID of the folder." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Update the hierarchy of a folder (parent or child) and set its parent if needed." }, { "info": { "name": "Change Folder Position", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/folders/:folder-id/reorder", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "folder-id", "value": "", "type": "path", "description": "ID of the folder." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Reorder a folder by moving it relative to another folder." }, { "info": { "name": "Sort Data by Columns", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/data/sort", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Sorts the data in the table based on specified columns." }, { "info": { "name": "Add Column", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/columns", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "This API allows you to add a new column to the specified view." }, { "info": { "name": "Rename Column", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/columns/:column-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." }, { "name": "column-id", "value": "", "type": "path", "description": "ID of the column." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "This API allows you to rename a column." }, { "info": { "name": "Delete Column", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/columns/:column-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." }, { "name": "column-id", "value": "", "type": "path", "description": "ID of the column." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "This API deletes the specified column from a view." }, { "info": { "name": "Add Lookup", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/columns/:column-id/lookup", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." }, { "name": "column-id", "value": "", "type": "path", "description": "ID of the column." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "This API adds a lookup relationship to a column." }, { "info": { "name": "Remove Lookup", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/columns/:column-id/lookup", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." }, { "name": "column-id", "value": "", "type": "path", "description": "ID of the column." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "This API removes the lookup relationship from a column." }, { "info": { "name": "Hide Columns", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/columns/hide", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "This API hides the specified columns in a view." }, { "info": { "name": "Show Columns", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/columns/show", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "This API shows the specified hidden columns in a view." }, { "info": { "name": "Reorder Columns", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/columns/reorder", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Updates the column order of the current table." }, { "info": { "name": "Copy Views", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:source-workspace-id/views/copy", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" }, { "name": "ZANALYTICS-DEST-ORGID", "value": "" } ], "params": [ { "name": "source-workspace-id", "value": "", "type": "path", "description": "Source workspace ID" } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Copy the specified views from one workspace to another workspace." }, { "info": { "name": "Copy Formulas", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/formulas/copy", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" }, { "name": "ZANALYTICS-DEST-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Copy the specified formulas from one table to another across workspaces." }, { "info": { "name": "Create Similar Views", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/similarviews", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Create reports for the specified table based on the reference table." }, { "info": { "name": "Auto Analyse View", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/autoanalyse", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Auto generate reports for the specified table." }, { "info": { "name": "Auto Analyse Column", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/columns/:column-id/autoanalyse", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." }, { "name": "column-id", "value": "", "type": "path", "description": "ID of the column." } ] }, "docs": "Auto generate reports for the specified column." }, { "info": { "name": "Get all variables in a workspace", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/variables", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." } ] }, "docs": "Retrieve a list of all variables created in the specified workspace." }, { "info": { "name": "Create a variable", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/variables", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Create a new variable in the specified workspace using a CONFIG JSON." }, { "info": { "name": "Get details of a specific variable", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/variables/:variable-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "variable-id", "value": "", "type": "path", "description": "ID of the variable." } ] }, "docs": "Fetch metadata and configuration of a variable using its ID in a workspace." }, { "info": { "name": "Update a variable", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/variables/:variable-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "variable-id", "value": "", "type": "path", "description": "ID of the variable." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Update an existing variable in the specified workspace using the CONFIG JSON." }, { "info": { "name": "Delete a variable", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/variables/:variable-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "variable-id", "value": "", "type": "path", "description": "ID of the variable." } ] }, "docs": "Delete the specified variable from the workspace." }, { "info": { "name": "Add Formula Column", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/customformulas", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Add a new formula column to the specified view." }, { "info": { "name": "Edit Formula Column", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/customformulas/:formula-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." }, { "name": "formula-id", "value": "", "type": "path", "description": "ID of the formula." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Update an existing formula column in the view." }, { "info": { "name": "Delete Formula Column", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/customformulas/:formula-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." }, { "name": "formula-id", "value": "", "type": "path", "description": "ID of the formula." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Delete a formula column from the specified view." }, { "info": { "name": "Add Aggregate Formula", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/aggregateformulas", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Add an aggregate formula column to the specified view." }, { "info": { "name": "Edit Aggregate Formula", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/aggregateformulas/:formula-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." }, { "name": "formula-id", "value": "", "type": "path", "description": "ID of the formula." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Update an existing aggregate formula column in the view." }, { "info": { "name": "Delete Aggregate Formula", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/aggregateformulas/:formula-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." }, { "name": "formula-id", "value": "", "type": "path", "description": "ID of the formula." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Delete an aggregate formula column from the specified view." }, { "info": { "name": "Create Email Schedule", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/emailschedules", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." }, { "name": "CONFIG", "value": "", "type": "query", "description": "JSON string representing the schedule configuration." } ] }, "docs": "Create an email schedule for a view." }, { "info": { "name": "Update Email Schedule", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/emailschedules/:schedule-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." }, { "name": "schedule-id", "value": "", "type": "path" }, { "name": "CONFIG", "value": "", "type": "query", "description": "JSON string representing the updated schedule configuration." } ] }, "docs": "Update an existing email schedule." }, { "info": { "name": "Delete Email Schedule", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/emailschedules/:schedule-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." }, { "name": "schedule-id", "value": "", "type": "path" } ] }, "docs": "Delete the specified email schedule." }, { "info": { "name": "Trigger Email Schedule", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/emailschedules/:schedule-id/trigger", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." }, { "name": "schedule-id", "value": "", "type": "path" } ] }, "docs": "Manually trigger the specified email schedule." }, { "info": { "name": "Change Email Schedule Status", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/restapi/v2/workspaces/:workspace-id/views/:view-id/emailschedules/:schedule-id/status", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "view-id", "value": "", "type": "path", "description": "ID of the view." }, { "name": "schedule-id", "value": "", "type": "path", "description": "ID of the email schedule." }, { "name": "CONFIG", "value": "", "type": "query", "description": "JSON string with schedule status (enabled or disabled)." } ] }, "docs": "Enable or disable the specified email schedule." }, { "info": { "name": "Create AutoML Analysis", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/automl/workspaces/:workspace-id/analysis", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Creates a new AutoML analysis within the workspace." }, { "info": { "name": "Create AutoML Analysis Deployment", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/automl/workspaces/:workspace-id/analysis/:analysis-id/models/:model-id/deployments", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "analysis-id", "value": "", "type": "path", "description": "ID of the AutoML analysis." }, { "name": "model-id", "value": "", "type": "path", "description": "ID of the AutoML analysis model." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Create a deployment for an AutoML analysis model." }, { "info": { "name": "AutoML What If Analysis", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/automl/workspaces/:workspace-id/analysis/:analysis-id/models/:model-id/whatif", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "analysis-id", "value": "", "type": "path", "description": "ID of the AutoML analysis." }, { "name": "model-id", "value": "", "type": "path", "description": "ID of the AutoML analysis model." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "CONFIG", "value": "" } ] } }, "docs": "Generate predictions using a trained AutoML model." }, { "info": { "name": "Run AutoML Analysis", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/restapi/v2/automl/workspaces/:workspace-id/analysis/:analysis-id/deployments/:deployment-id/execute", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "analysis-id", "value": "", "type": "path", "description": "ID of the AutoML analysis." }, { "name": "deployment-id", "value": "", "type": "path", "description": "ID of the AutoML analysis deployment." } ] }, "docs": "Execute an AutoML analysis deployment." }, { "info": { "name": "Delete AutoML Analysis Model Deployment", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/restapi/v2/automl/workspaces/:workspace-id/analysis/:analysis-id/deployments/:deployment-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "analysis-id", "value": "", "type": "path", "description": "ID of the AutoML analysis." }, { "name": "deployment-id", "value": "", "type": "path", "description": "ID of the AutoML analysis deployment." } ] }, "docs": "Delete an AutoML analysis deployment." }, { "info": { "name": "Delete AutoML Analysis Model", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/restapi/v2/automl/workspaces/:workspace-id/analysis/:analysis-id/models/:model-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "analysis-id", "value": "", "type": "path", "description": "ID of the AutoML analysis." }, { "name": "model-id", "value": "", "type": "path", "description": "ID of the AutoML analysis model." } ] }, "docs": "Delete a specific model from an AutoML analysis." }, { "info": { "name": "Delete AutoML Analysis", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/restapi/v2/automl/workspaces/:workspace-id/analysis/:analysis-id", "headers": [ { "name": "ZANALYTICS-ORGID", "value": "" } ], "params": [ { "name": "workspace-id", "value": "", "type": "path", "description": "ID of the workspace." }, { "name": "analysis-id", "value": "", "type": "path", "description": "ID of the AutoML analysis." } ] }, "docs": "Delete a specified AutoML analysis from the workspace." } ] } ], "bundled": true }