mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 20:37:47 +00:00
37 lines
1018 B
YAML
37 lines
1018 B
YAML
get:
|
|
operationId: spConfigObjects
|
|
security:
|
|
- oauth2: [sp:config:export]
|
|
tags:
|
|
- SP-Config
|
|
summary: Get Config Object details
|
|
description: >-
|
|
This gets the list of object configurations which are known to the tenant export/import service.
|
|
Object configurations that contain "importUrl" and "exportUrl" are available for export/import.
|
|
|
|
Request will need the following security scope:
|
|
|
|
'sp:config:export'
|
|
responses:
|
|
'200':
|
|
description: >-
|
|
Object configurations returned successfully.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: array
|
|
items:
|
|
$ref: '../../beta/schemas/SpConfigObject.yaml'
|
|
'400':
|
|
$ref: '../../v3/responses/400.yaml'
|
|
'401':
|
|
$ref: '../../v3/responses/401.yaml'
|
|
'403':
|
|
$ref: '../../v3/responses/403.yaml'
|
|
'404':
|
|
$ref: '../../v3/responses/404.yaml'
|
|
'429':
|
|
$ref: '../../v3/responses/429.yaml'
|
|
'500':
|
|
$ref: '../../v3/responses/500.yaml'
|