Files
api-specs/idn/beta/paths/sp-config-import-download.yaml
GitHub Action Bot d4feae14c8 Automated commit 'Merge pull request #1334 from sailpoint/devrel-997
devrel-997' by github action: 5613579715
2023-07-20 16:33:45 +00:00

44 lines
1.3 KiB
YAML

get:
operationId: getSpConfigImport
# security:
# - oauth2: [sp:config:import]
tags:
- SP-Config
summary: Download import job result
description: >-
This gets import file resulting from the import job with the requested id and downloads it to a file.
The downloaded file will contain the results of the import operation, including any error, warning or informational
messages associated with the import.
The request will need the following security scope:
- sp:config:manage
parameters:
- in: path
name: id
schema:
type: string
required: true
description: The ID of the import job whose results will be downloaded.
example: ef38f94347e94562b5bb8424a56397d8
responses:
'200':
description: >-
Import results JSON object, containing detailed results of the import operation.
content:
application/json:
schema:
$ref: '../../beta/schemas/SpConfigImportResults.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'