mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 04:19:31 +00:00
64 lines
1.7 KiB
YAML
64 lines
1.7 KiB
YAML
get:
|
|
operationId: getCampaignReportsConfig
|
|
tags:
|
|
- Certification Campaigns
|
|
summary: Get Campaign Reports Configuration
|
|
description: >-
|
|
Fetches configuration for campaign reports. Currently it includes only one element - identity attributes defined as custom report columns.
|
|
|
|
Requires roles of CERT_ADMIN and ORG_ADMIN.
|
|
|
|
# security:
|
|
# - oauth2: [CERT_ADMIN,ORG_ADMIN]
|
|
responses:
|
|
'200':
|
|
description: Campaign Report Configuration
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/CampaignReportsConfig.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'
|
|
put:
|
|
operationId: setCampaignReportsConfig
|
|
tags:
|
|
- Certification Campaigns
|
|
summary: Set Campaign Reports Configuration
|
|
description: >-
|
|
Overwrites configuration for campaign reports.
|
|
|
|
Requires roles CERT_ADMIN and ORG_ADMIN.
|
|
|
|
# security:
|
|
# - oauth2: [CERT_ADMIN,ORG_ADMIN]
|
|
requestBody:
|
|
required: true
|
|
description: Campaign Report Configuration
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/CampaignReportsConfig.yaml'
|
|
responses:
|
|
'200':
|
|
description: The persisted Campaign Report Configuration
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/CampaignReportsConfig.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'
|