1. Workflow Object

Workflow Object

This is an object representing a workflow.

Properties

  • id

    number

    The numeric ID

  • content_types

    string[]

    Array of content types associated with this workflow. At least one content type is required for a custom workflow.

  • is_default

    boolean

    True if the workflow is default one

  • name

    string

    Workflow name

Example
{
  "workflow": {
    "id": 15268,
    "content_types": [
      "author"
    ],
    "is_default": false,
    "name": "author"
  }
}