Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions docs/snippets/endpoint-event-search-common.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -242,11 +242,21 @@ This endpoint supports the
If provided, results will be filtered on the tags.
</ParamField>

<ParamField body="is_ignored" type="bool">
<ParamField body="status" type="string[]">
If provided, results will only contain events that match one of the specified statuses.

<Expandable title="valid status values">
`open`
`ignored`
`remediated`
</Expandable>
</ParamField>

<ParamField body="is_ignored" type="bool" deprecated>
If set to true, results will be filtered to be events that have been ignored.
</ParamField>

<ParamField body="is_remediated" type="bool">
<ParamField body="is_remediated" type="bool" deprecated>
If set to true, results will be filtered to be events that have been remediated.
</ParamField>
</Expandable>
Expand Down
Loading