Get all workflows

GET /api/v1/workflow

Query parameters

  • include string

    Comma separated list of relationships to include in the response. Valid relationships are [author, tasks_count].

  • Filter by a comma separated list of UUIDs.

  • sort string

    Field to sort by. Valid fields are [created_at, updated_at, name]. Negative sign to denote DESC. Defaults to 'name'.

  • per_page integer

    Number of results to return with pagination (Default 15. Max 500).

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
curl \
 -X GET https://api.plannrcrm.com/api/v1/workflow \
 -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": "41a5c5a1-ae7f-4e38-a52a-ad26587028c1",
  "created_at": "2024-10-16T11:10:15+01:00",
  "updated_at": "2024-10-16T11:10:15+01:00",
  "tasks_count": 5
}