Deletes a DataWorks workspace.
Debugging
Request parameters
Parameter | Type | Required | Example | Description |
---|---|---|---|---|
Action | String | Yes | DeleteProject | The operation that you want to perform. Set the value to DeleteProject. |
ProjectId | Long | Yes | 25 | The ID of the DataWorks workspace. You can call the ListProjects operation to obtain the ID. |
Response parameters
Parameter | Type | Example | Description |
---|---|---|---|
HttpStatusCode | Integer | 200 | The HTTP status code returned. |
RequestId | String | 1AFAE64E-D1BE-432B-A9**** | The ID of the request. You can use the ID to query logs and troubleshoot issues. |
Success | Boolean | true | Indicates whether the request was successful. Valid values:
|
Data | Boolean | true | Indicates whether the DataWorks workspace was deleted. |
Examples
Sample requests
http(s)://[Endpoint]/?Action=DeleteProject
&ProjectId=25
&<Common request parameters>
Sample success responses
XML
format
HTTP/1.1 200 OK
Content-Type:application/xml
<DeleteProjectResponse>
<HttpStatusCode>200</HttpStatusCode>
<RequestId>1AFAE64E-D1BE-432B-A9****</RequestId>
<Success>true</Success>
<Data>true</Data>
</DeleteProjectResponse>
JSON
format
HTTP/1.1 200 OK
Content-Type:application/json
{
"HttpStatusCode" : 200,
"RequestId" : "1AFAE64E-D1BE-432B-A9****",
"Success" : true,
"Data" : true
}
Error codes
HTTP status code | Error code | Error message | Description |
---|---|---|---|
400 | Invalid.Tenant.ConnectionNotExists | The connection does not exist. | The error message returned because the specified data source does not exist. |
400 | Invalid.Tenant.ProjectNotExists | The project does not exist. | The error message returned because the specified workspace does not exist. |
400 | Invalid.Tenant.UserNotInProject | The user is not in the project. | The error message returned because the user is not added to the workspace. |
403 | Invalid.Tenant.UserIsNotProjectOwnerOrAdmin | The user is not a project administrator or owner. | The error message returned because the user is not the workspace owner or workspace administrator. |
403 | Invalid.Tenant.UserNotInTenant | The user is not in tenant. | The error message returned because the user does not belong to the tenant. |
For a list of error codes, see Service error codes.