mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 04:19:16 +00:00
* added new oauth2 flow and description * renamed authentication to make more sense' by github action: 5967546682
29 lines
703 B
YAML
29 lines
703 B
YAML
#
|
|
# Copyright (C) 2019-2020 SailPoint Technologies, Inc. All rights reserved.
|
|
#
|
|
post:
|
|
tags:
|
|
- Task Management
|
|
summary: Run a task.
|
|
description: Run a task.
|
|
operationId: runTask
|
|
requestBody:
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/TaskInvocation.yaml'
|
|
required: true
|
|
responses:
|
|
"200":
|
|
description: Responds with an initial TaskStatus for the executed task.
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/TaskStatus.yaml'
|
|
"400":
|
|
$ref: '../../v3/responses/400.yaml'
|
|
"403":
|
|
$ref: '../../v3/responses/403.yaml'
|
|
security:
|
|
- UserContextAuth: [idn:task-management:write]
|