GET
/
v3
/
workflows
curl --request GET \
  --url https://api.captaindata.co/v3/workflows \
  --header 'Authorization: <api-key>' \
  --header 'x-project-id: <api-key>'
[
  {
    "uid": "wxyz-xxxx-xxxx-xxxxx-xxxxxx",
    "name": "Workflow Name",
    "created_at": "2024-03-16T11:39:51.583695",
    "steps": [
      {
        "name": "Step's Name",
        "uid": "12345-xxxx-xxxx-xxxx-xxxxxxx",
        "step_uid": "12345-xxxx-xxxx-xxxx-xxxxxxxx"
      }
    ],
    "template_uid": "abcd-xxxx-xxxx-xxxx-xxxxxxxx"
  }
]

Authorizations

Authorization
string
header
required

The Authorization header must include 'x-api-key' followed by your API key (e.g., 'Authorization: x-api-key YOUR_API_KEY').

x-project-id
string
header
required

Workspace UID required to identify the workspace.

Response

200 - application/json
Successful Response

The response is of type any.