v1

latestOpenAPI 3.0.1Apache 2.02026-07-1398228598.3 KB
Tool
CreateDeck

Create Deck

Generates presentation decks based on conversations, deals, or other content. This endpoint creates structured presentations with key insights and data visualizations.

post/create_deck

Request body

users_to_sharestring[] required
context_idstring required
deck_typestring
slidesinteger
additional_instructionsstring

Example request

{
  "context_id": "deal_123",
  "users_to_share": [
    "user1@example.com",
    "user2@example.com"
  ],
  "deck_type": "sales_presentation",
  "slides": 10,
  "structure": [
    {
      "layout_instruction": "Use a two-column layout",
      "content_instruction": "Include key metrics and competitor analysis"
    }
  ],
  "additional_instructions": "Focus on enterprise features and ROI"
}

Response

Deck successfully generated and ready for use

successboolean required
linkstring required
errorstring required
emails_shared_withstring[] required

Example response

{
  "success": true,
  "link": "https://example.com/deck/123",
  "error": "",
  "emails_shared_with": [
    "user1@example.com",
    "user2@example.com"
  ]
}