Delete Workspace
You can delete one or more Workspaces in a single request. Caution should be exercised because if you delete a Workspace, you will lose all the work contained in that Workspace. There is no confirmation dialog so when you send the request, the Workspace will be deleted without the possibility of restoring it unless you have a database back up containing the Workspace or you have archived the Workspace to a SIF file.
- URI: Single Workspace: http://ServerName:port/siebel/v1.0/wsoperation/{wsname}
- URI: Multiple Workspaces: http://ServerName:port/siebel/v1.0/wsoperation
- HTTP Method: DELETE
- Content-Type: application/json
- Authorization: Basic
- Request Body:
Deleting a Single Workspace
Note: For single Workspace deletion you specify the Workspace name in the URL. In the following example, the name is dev_sadmin_a1.Example:
https://%20ServerName:port%20/oracle-crm/v1.0/wsoperation/dev_sadmin_a1-
Deleting Multiple Workspaces
To delete multiple Workspaces in a single request, list them in the body as shown below.
- URI: Multiple Workspaces: http://ServerName:port/siebel/v1.0/wsoperation
- HTTP Method: DELETE
- Content-Type: application/json
- Authorization: Basic
- Request Body:
Example:
https://%20ServerName:port%20/oracle-crm/v1.0/wsoperation{ "workspaces": [ { "Name": "int_october_2026" }, { "Name": "dev_sadmin_feature_mno" }, { "Name": "dev_sadmin_feature_pqr" } ] }
-
Response details
- HTTP Code: 200
- Content-Type: application/json
- Response Body:
-
Deleting a Single Workspace
{ "Name": "dev_sadmin_a1", "Id": "88-3Z67VR" } -
Deleting Multiple Workspaces
{ "": [ { "Name": "int_october_2026", "Id": "88-3Z6A3R" }, { "Name": "dev_sadmin_feature_mno", "Id": "88-3Z6A3E" }, { "Name": "dev_sadmin_feature_pqr", "Id": "88-3Z6A3G" } ] }
-