Skip to content

Workflow Object

This is an object representing a workflow.

  • 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 Object
{
"workflow": {
"id": 15268,
"content_types": [
"author"
],
"is_default": false,
"name": "author"
}
}