Performs a bulk action on flag issues by their IDs (resolve, unresolve, hold, release)
Use this endpoint to apply a single action across multiple flag issues at once.
Supports resolving, unresolving, holding from export, and releasing from hold.
For per-entity edits, use PUT /flag/flagIssue/{entityType}/{entityId} instead.
Request Headers
| Header | Value | Required | Description |
|---|---|---|---|
| ECI-ApiKey | string | Yes | Your API key. See Authentication. |
| Content-Type | application/json | Yes | All requests must specify JSON content type, including the request body. |
Request Body
FlagIssueListAction
| Property | Description | Type | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| flagIssueAction | FlagIssueEditAction | |||||||||||||
|
FlagIssueEditAction properties
|
||||||||||||||
| flagIssueIds | The flag issues to update Required Cannot be Empty | integer[] | ||||||||||||
Example Request Body
{ "flagIssueAction": { "assignees": [
1
], "comment": "string", "flagIssueStatusId": 1
}, "flagIssueIds": [
1
]
}
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
UpdateResult
| Property | Description | Type |
|---|---|---|
| selected | The total number of items that were targeted by the bulk operation Required (defined) | integer (int32) |
| updated | The number of items that were actually modified (excludes items that already matched the target state) Required (defined) | integer (int32) |
Example Response
{ "selected": 1, "updated": 1
}