Files
developer.sailpoint.com/static/api-specs/idn/beta/paths/task-execution-cancel.yaml
2022-09-29 21:59:22 +00:00

29 lines
706 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:
- oauth2: [idn:task-management:write]