mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 04:19:31 +00:00
44 lines
1.4 KiB
YAML
44 lines
1.4 KiB
YAML
post:
|
|
tags:
|
|
- Reports Data Extraction
|
|
description: >-
|
|
Runs a report according to input report details.
|
|
If non-concurrent task is already running then it returns, otherwise new task creates and returns.
|
|
operationId: startReport
|
|
summary: "Run Report"
|
|
security:
|
|
- oauth2: [sp:report:create]
|
|
requestBody:
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/reports/ReportDetails.yaml'
|
|
examples:
|
|
identityDetailsReport:
|
|
$ref: '../schemas/reports/examples/identities-details-report-details.yaml'
|
|
searchExportReport:
|
|
$ref: '../schemas/reports/examples/search-export-report-details.yaml'
|
|
required: true
|
|
responses:
|
|
'200':
|
|
description: Details about running report task.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/reports/TaskResultDetails.yaml'
|
|
examples:
|
|
identityDetailsReport:
|
|
$ref: '../schemas/reports/examples/identities-details-report-task-result.yaml'
|
|
searchExportReport:
|
|
$ref: '../schemas/reports/examples/search-export-report-task-result.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'
|