mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-10 04:19:19 +00:00
* DEVREL-670: Add work item forward endpoint to beta * Added missing response codes --------- Co-authored-by: colin-mckibben-sp <coln.mckibben@sailpoint.com>' by github action: 4639020477
35 lines
901 B
YAML
35 lines
901 B
YAML
post:
|
|
operationId: forwardWorkItem
|
|
tags:
|
|
- Work Items
|
|
summary: Forward a Work Item
|
|
description: >-
|
|
This API forwards a work item to a new owner. Either an admin, or the owning/current user must make this request.
|
|
parameters:
|
|
- in: path
|
|
name: id
|
|
schema:
|
|
type: string
|
|
required: true
|
|
description: The ID of the work item
|
|
example: ef38f94347e94562b5bb8424a56397d8
|
|
requestBody:
|
|
required: true
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/WorkItemForward.yaml'
|
|
responses:
|
|
'200':
|
|
description: "Success, but no data is returned."
|
|
'400':
|
|
$ref: '../../v3/responses/400.yaml'
|
|
'401':
|
|
$ref: '../../v3/responses/401.yaml'
|
|
'403':
|
|
$ref: '../../v3/responses/403.yaml'
|
|
'429':
|
|
$ref: '../../v3/responses/429.yaml'
|
|
'500':
|
|
$ref: '../../v3/responses/500.yaml'
|