Delete Project
POST /tm/api/v1/projects/action/delete
Operation id: deleteProject
Description
Delete a pre-launch project based on provided Project Id list.
Security
- ApiKeyAuth (apiKey)
- API key passed in the
apikeyrequest header.
- API key passed in the
Responses
200 — Success
Content type: application/json
400 — Error
Content type: application/json
Request body
Required: Yes
application/json
Schema
| Property | Type | Required | Description |
|---|---|---|---|
projectIds | string | Yes | Comma separated Project Ids |
{
"type": "object",
"required": [
"projectIds"
],
"properties": {
"projectIds": {
"type": "string",
"description": "Comma separated Project Ids"
}
}
}
Response models
200 — Success
Content type: application/json
Schema
| Property | Type | Required | Description |
|---|---|---|---|
status | string | No | |
message | string | No |
{
"type": "object",
"properties": {
"status": {
"type": "string",
"example": "SUCCESS"
},
"message": {
"type": "string",
"example": "Project deleted successfully"
}
}
}
400 — Error
Content type: application/json
Schema
| Property | Type | Required | Description |
|---|---|---|---|
status | string | No | |
error | array | No |
{
"type": "object",
"properties": {
"status": {
"type": "string",
"example": "ERROR"
},
"error": {
"type": "array",
"items": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string"
}
}
}
}
}
}
Example:
{
"status": "ERROR",
"error": [
{
"code": "839",
"message": "projectId not provided."
}
]
}