Skip to main content
PATCH
/
v1
/
reporters
/
{reporter_id}
/
workflows
/
{workflow_id}
Update workflow
curl --request PATCH \
  --url https://api.clipping.cc/v1/reporters/{reporter_id}/workflows/{workflow_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "target_kind": "<string>"
}
'
{
  "workflow": {
    "workflow_id": "<string>",
    "reporter_id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "target_kind": "<string>",
    "steps": [
      {
        "step_id": "<string>",
        "tool_id": "<string>",
        "prompt_text": "<string>",
        "params": {},
        "order_index": 123
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.clipping.cc/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key: Authorization: Bearer ck_live_…

Path Parameters

reporter_id
string
required
workflow_id
string
required

Body

application/json
name
string
description
string | null
target_kind
string | null

Response

Updated.

workflow
object