Files
api-specs/idn/v3/paths/saved-searches-execute.yaml
GitHub Action Bot c519af1676 Automated commit 'Merge pull request #1173 from sailpoint/update/operationIds
Update operationIds on Apis to be more consistent' by github action: 4136416158
2023-02-09 16:40:03 +00:00

40 lines
1.3 KiB
YAML

post:
tags:
- Saved Search
description: |
Executes the specified saved search.
summary: Execute a saved search by ID
operationId: executeSavedSearch
parameters:
- $ref: '../parameters/path/search/id.yaml'
requestBody:
description: |
When saved search execution is triggered by a scheduled search, *scheduleId* will specify the ID of the triggering scheduled search.
If *scheduleId* is not specified (when execution is triggered by a UI test), the *owner* and *recipients* arguments must be provided.
content:
application/json:
schema:
$ref: '../schemas/search/saved/SearchArguments.yaml'
examples:
scheduled:
$ref: '../schemas/search/saved/examples/execute-scheduled.yaml'
test:
$ref: '../schemas/search/saved/examples/execute-test.yaml'
required: true
responses:
'202':
description: Accepted - Returned if the request was successfully accepted into the system.
'404':
$ref: '../responses/404.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'