Batch Remove Issue
DELETE
/issue/batch-removeIssues Size Should Not Be More Than 100
Request
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Body Params application/json
issueIds
array [object]
required
Issue Ids
projectId
integer <int64>
required
Project ID
Example
{
"issueIds": [
1,
2,
3
],
"projectId": 1
}
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
issueId
integer <int64>
optional
issue id
success
boolean
optional
Success Or Not
failureReason
string
optional
Failure Reason
Example
{
"code": "0",
"data": [
{
"issueId": 1,
"success": true,
"failureReason": "xxx"
}
]
}
Last modified: 7 months ago