---
title: The Approval Object
description: Discover Storyblok's documentation with comprehensive developer guides, user manuals, API references, and examples to help you get the most out of the headless CMS platform.
url: https://storyblok.com/docs/api/management/approvals/the-approval-object
---

# The Approval Object

## Properties

-   `id` (number)
    
    The numeric ID
    
-   `status` (string)
    
    Status of approval
    
-   `story_id` (number)
    
    ID of content entry that should be approved
    
-   `approver_id` (number)
    
    ID of the User that should be the approver
    

Example Object

```json
{
 "approval": {
   "id": 11,
   "status": "pending",
   "story_id": 1066,
   "approver_id": 1028
 }
}
```

## Pagination

-   [Previous: Retrieve Multiple Approvals](/docs/api/management/approvals/retrieve-multiple-approvals)
-   [Next: Asset Folders](/docs/api/management/asset-folders)
