curl --request POST \
--url https://api.attention.tech/v2/create_deck \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"context_id": "deal_123",
"users_to_share": [
"[email protected]",
"[email protected]"
],
"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"
}
'