v1

latestOpenAPI 3.0.02026-08-0442100147.0 KB
Workspace API - Workflows

Update a workflow

Partially update a workflow. Only provided fields are changed. Provider keys in providers must exist in app.providers.

patch/v1/apps/{id}/workflows/{workflowId}

Path parameters

idstring required

App client ID

workflowIdstring required

Workflow identifier

Request body

namestring
entryNodeIdstring

Example request

{
  "nodes": [
    {
      "id": "nd_ab12cd34"
    }
  ]
}

Response

Workflow updated

workflowIdstring required
namestring required
entryNodeIdstring required
createdAtstring date-time
updatedAtstring date-time

Example response

{
  "nodes": [
    {
      "id": "nd_ab12cd34"
    }
  ]
}