Files
api-specs/idn/beta/paths/task-execution-cancel.yaml
GitHub Action Bot 9269e86172 Automated commit 'added new oauth2 flow and description (#1386)
* added new oauth2 flow and description

* renamed authentication to make more sense' by github action: 5967546682
2023-08-24 18:29:03 +00:00

29 lines
715 B
YAML

#
# Copyright (C) 2019-2020 SailPoint Technologies, Inc. All rights reserved.
#
post:
tags:
- Task Management
summary: Cancel a task by ID
description: Cancel a task by task ID.
operationId: cancelTask
parameters:
- name: id
in: path
description: Task ID of task to cancel
required: true
style: simple
explode: false
schema:
type: string
example: anId
responses:
"200":
description: Response indicating that the Task with the given ID was successfully cancelled.
"403":
$ref: '../../v3/responses/403.yaml'
"404":
$ref: '../../v3/responses/404.yaml'
security:
- UserContextAuth: [idn:task-management:write]