Skip to main content
PATCH
/
v1
/
orchestration
/
workflows
/
{workflow_id}
Patch Workflow
curl --request PATCH \
  --url https://api.example.com/v1/orchestration/workflows/{workflow_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "steps": [
    {}
  ]
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workflow_id
string
required

Body

application/json
name
string | null
Required string length: 1 - 200
description
string | null
Maximum string length: 2000
trigger_type
enum<string> | null
Available options:
manual,
scheduled,
event
steps
Steps · object[] | null

Response

Successful Response

The response is of type Response Patch Workflow V1 Orchestration Workflows Workflow Id Patch · object.