Get a workflow

GET /api/v1/workflow/{uuid}

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      UUID of the account

    • The timestamp of when the resource was created.

    • The timestamp of when the resource was updated.

    • name string

      Name of the workflow

    • type string

      The type of workflow.

    • The number of tasks on the workflow.

GET /api/v1/workflow/{uuid}
curl \
 -X GET https://api.plannrcrm.com/api/v1/workflow/uuid \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json"
Response examples (200)
{
  "name": "Pension Transfer",
  "type": "simple",
  "uuid": "4e23a99e-7fc5-4547-b5c1-82cf211d8b29",
  "created_at": "2024-10-16T11:10:15+01:00",
  "updated_at": "2024-10-16T11:10:15+01:00",
  "tasks_count": 5
}