Files
developer.sailpoint.com/static/api-specs/idn/beta/paths/trigger-invocations-pending-events.yaml
2022-09-28 19:55:44 +00:00

60 lines
1.7 KiB
YAML

get:
operationId: listPendingEvents
tags:
- Triggers
summary: List Pending Events
description: Get a list of event status, i.e. count of persisted, pending events per topic.
parameters:
- $ref: '../../v3/parameters/limit.yaml'
- $ref: '../../v3/parameters/offset.yaml'
- $ref: '../../v3/parameters/count.yaml'
- in: query
name: filters
required: false
schema:
type: string
description: >-
Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)
Filtering is supported for the following fields and operators:
**topic**: *eq*
example: 'topic eq "Channel"'
- in: query
name: sorters
required: false
schema:
type: string
format: comma-separated
description: >-
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
Sorting is supported for the following fields:
**topic**
example: 'topic'
responses:
'200':
description: >-
List of pending events
content:
application/json:
schema:
type: array
items:
$ref: '../schemas/EventStatus.yaml'
'400':
$ref: '../../v3/responses/400.yaml'
'401':
$ref: '../../v3/responses/401.yaml'
'403':
$ref: '../../v3/responses/403.yaml'
'429':
$ref: '../../v3/responses/429.yaml'
'500':
$ref: '../../v3/responses/500.yaml'