v1

latestOpenAPI 3.0.02026-07-24234471.0 KB
Workflow

Update a workflow

Update a workflow

patch/workflow/{id}

Path parameters

idinteger required

ID is a generic type that is used to represent a unique identifier

Example:4455

Workflow ID

Request body

namestring

The name of the workflow

colorstring

The color of the workflow in a hex format

Example request

{
  "name": "In Progress"
}

Response

Created

idinteger required

ID is a generic type that is used to represent a unique identifier

namestring required

The name of the workflow

sortnumber double required

The order is which workflows are displayed

colorstring required

The color of the workflow in a hex format

Example response

{
  "id": 4455,
  "name": "In Progress",
  "sort": 1,
  "Project": {
    "id": 4455,
    "createdBy": 4455
  }
}