# Export ideas

Export ideas based on date range.

Endpoint: POST /export/ideas
Version: 1.0.0
Security: ApiToken

## Request fields (application/json):

  - `createdAtStart` (string)
    ISO 8601 date string.
    Example: "2024-12-01T00:00:00.000Z"

  - `createdAtEnd` (string)
    ISO 8601 date string.
    Example: "2024-12-26T00:00:00.000Z"

## Response 200 fields (application/json):

  - `ideas` (array)

  - `ideas.id` (string)
    Unique Bagel ID of the idea
    Example: "12345"

  - `ideas.title` (string)
    The idea title
    Example: "New Feature Implementation"

  - `ideas.description` (string)
    The idea description
    Example: "This idea proposes a new feature for improving user experience."

  - `ideas.priority` (string)
    Custom options defined by the user in Bagel. Typically values like High, Medium, or Low.
    Example: "High"

  - `ideas.domain` (string)
    Broad business domains that are often connected to several product areas. These represent the main domains of the company.
    Example: "Product"

  - `ideas.product_area` (string)
    More specific area of the business product related to the idea.
    Example: "UX Design"

  - `ideas.product_sub_area` (string)
    Further refines the product categorization.
    Example: "Prototyping"

  - `ideas.status` (string)
    The current status set for the idea
    Example: "Pending"

  - `ideas.link` (string)
    Direct link to view the idea in Bagel
    Example: "https://app.bagel.ai/idea/12345"

  - `ideas.owner` (object)
    A Bagel user associated with this idea

  - `ideas.owner.id` (string)
    The owner's UUID
    Example: "abc123"

  - `ideas.owner.name` (string)
    The owner's name
    Example: "Jane Doe"

  - `ideas.owner.email` (string)
    The owner's email
    Example: "jane.doe@example.com"

  - `ideas.delivery_item` (object)
    External item linked to the idea (usually a Jira issue)

  - `ideas.delivery_item.id` (string)
    The delivery item ID
    Example: "delivery123"

  - `ideas.delivery_item.status` (string)
    The status of the linked external item/issue
    Example: "In Progress"

  - `ideas.delivery_item.link` (string)
    Direct link to the item/issue in the external application
    Example: "https://delivery.example.com"

  - `ideas.createdAt` (string)
    Timestamp when the idea was initially created
    Example: "2023-12-01T10:00:00.000Z"

  - `ideas.updatedAt` (string)
    Timestamp when any idea fields were last updated (title, description, priority, status, owner, etc.)
    Example: "2023-12-05T15:00:00.000Z"

  - `ideas.impact` (object)
    Aggregated impact properties for the idea, keyed by impact property name. Each entry contains assigned, suggested, and total values. Impact properties are defined in the idea configuration.
    Example: {"totalRevenue":{"label":"Total Revenue","assigned":50000,"suggested":75000,"total":125000},"companiesCount":{"label":"Companies","assigned":10,"suggested":5,"total":15}}


## Response 400 fields

## Response 401 fields

## Response 500 fields
