B U S I N E S S A N A L Y S T 10.2 R E S T R E P O S I T O R Y U T I L I T Y
Delete Project Endpoint
Deletes a project.
Availability: Business Analyst Server.
http://localhost:6080/arcgis/rest/services/DefaultMap/MapServer/exts/BAServer/DeleteProject/execute
Parameters
WorkspaceName (required) |
Workspace name. Type string. |
ProjectName (required) |
Name of project to delete. Type string. |
f (optional) |
Response format. Type string. Available formats: HTML, JSON, PJSON, XML. Default: HTML. |
token |
Authentication token. This parameter is required if your Business Analyst Server is secured. Type string. |
Returns
Variable of type boolean
Remarks
If the project is absent, this endpont returns an error. Additionally, if the "Default Project" is deleted, all of its contents (folder items, etc.) will be deleted and this project will be recreated on the next full reload.
Example Usage
The example below demonstrates the deletion of an existing project in Business Analyst Server Repository.
{ "results": [ { "paramName":"OutputStatus", "dataType":"GPBoolean", "value":true } ], "messages": [ ] }
In attempt to delete a missing project, an error message is returned:
{ "error": { "code":-2147467259, "message":"Failed to delete project.", "details": [ "Error code: 0x80004005\n...\n" ] }, "messages": [ ] }
NOTE: The response has been abbreviated where "..." is noted.
See Also