---
title: Workflow Stage Change Object
description: This is an object representing a workflow stage change.
url: https://storyblok.com/docs/api/management/workflow-stage-changes/workflow-stage-change-object
---

# Workflow Stage Change Object

This is an object representing a workflow stage change.

## Properties

-   `id` (number)
    
    The numeric ID of a workflow stage change
    
-   `workflow_stage_id` (number)
    
    Workflow stage ID to which the story is changed to
    
-   `created_at` (string)
    
    Creation date (Format: `yyyy-MM-dd'T'HH:mm:ssZ`)
    
-   `user_id` (number)
    
    ID of the use that made the change
    
-   `workflow_id` (number)
    
    ID of the workflow that the stage belongs to
    
-   `due_date` (string | null)
    
    Due date (Format: `yyyy-MM-dd'T'HH:mm:ssZ`)
    

Example Object

```json
{
"workflow_stage_change" :
 {
    "id": 2476842,
    "workflow_stage_id": 528725,
    "created_at": "2024-05-29T06:45:58.125Z",
    "user_id": 124123,
    "workflow_id": 18297,
    "due_date": "2025-08-20T12:33:00.000Z"
 }
}
```

## Pagination

-   [Previous: Retrieve Multiple Workflow Stage Changes](/docs/api/management/workflow-stage-changes/retrieve-multiple-workflow-stage-changes)
-   [Next: Workflows](/docs/api/management/workflows)
