---
title: Workflow Object
description: This is an object representing a workflow.
url: https://storyblok.com/docs/api/management/workflows/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 Object

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

## Pagination

-   [Previous: Update a Workflow](/docs/api/management/workflows/update-a-workflow)
-   [Next: Introduction](/docs/api/graphql)
