Batch delete issues
POST/project/publishers/issues
Batch delete issues.
History
Version | Changes |
---|---|
v3.14.117, v3.15.26 | Added in: v3.14.117, v3.15.26 |
Request
Query Parameters
- action: Actions on issue,support
batchDelete
.
The team ID
- application/json
Body
required
The issues to be deleted.
The issue IDs to be deleted
Responses
- 200
- 401
- 403
- 404
- 500
Request successful.
- application/json
- Schema
- Example (from schema)
Schema
data
object
Batch issue ID
The result of this request.
The error code of this request.
Error message for this request.
Error meta data for this request.
[
{
"result": "SUCCESS",
"data": {
"jobID": 123456
}
},
{
"result": "FAIL",
"errorCode": "NotFound",
"errorMsg": "NotFound issue"
}
]
Returned if the authentication credentials are incorrect or missing.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "Unauthorized",
"errorMsg": "Access token is invalid"
}
Returns if the scope check fails.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "Forbidden",
"errorMsg": "Scope is invalid"
}
Returned if the resource object was not found.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "NotFound",
"errorMsg": "Not Found"
}
Internal Server Error.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "Internal Server Error",
"errorMsg": "Internal Server Error"
}