---
title: Idea Stories Object
description: An object that represents a story associated with a specific idea
url: https://storyblok.com/docs/api/management/ideation-room/idea-s-stories-object
---

# Idea Stories Object

> [!WARNING]
> Idea’s stories object differs from the [stories object in Management API](/docs/api/management/stories/the-story-object/).

## Properties

-   `name` (string)
    
    The complete name provided for the story
    
-   `id` (number)
    
    The numeric ID
    
-   `full_slug` (string)
    
    The full slug of the story, combining the parent folder(s) and the designated story slug
    

Example Object

```json
{
 "stories": [
   {
     "id": 987654321,
     "name": "My first idea",
     "full_slug": "new-ideas/my-first-idea"
   }
 ]
}
```

## Pagination

-   [Previous: Delete an Idea](/docs/api/management/ideation-room/delete-an-idea)
-   [Next: Idea Comments Object](/docs/api/management/ideation-room/ideas-comments-object)
