Workflow Object
This is an object representing a workflow.
Properties
-
id
numberThe 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
booleanTrue if the workflow is default one
-
name
stringWorkflow name
Example
{
"workflow": {
"id": 15268,
"content_types": [
"author"
],
"is_default": false,
"name": "author"
}
}