Documentation Index
Fetch the complete documentation index at: https://duomi.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Agenda Blocks
Use an agenda block when the template slide is an agenda layout and the request needs to provide the section list. The template supplies the placement, base styling, and numbered marker style. The payload supplies the section titles and which section should be highlighted.Basic Shape
Insideslide_data.content.blocks, an agenda block looks like this:
sections is required and must contain at least one item. active_index is optional; use null or omit it when no section should be highlighted.
Template Requirements
Agenda blocks should target agenda template slides. A compatible agenda template has:- A one-column table or agenda text region for section titles
- Numbered oval markers or equivalent section markers
- The base font, spacing, color, and marker style you want reused
sections array.
Active Section
active_index is zero-based. The first section is 0, the second is 1, and so on.
Strategy is the active section.
If active_index is outside the section list, generation fails validation for that slide. For example, a three-section agenda accepts 0, 1, or 2.
Fields
sections: ordered agenda section titles.active_index: optional zero-based index of the active section.active_font_color: optional hex color for the active section text.active_bold: optional active-section bold override. Defaults totrue.active_underline: optional active-section underline override. Defaults totrue.
Complete Example
Agenda block request example
Agenda block request example


Common Issues
- Missing
agendaobject: every block withtype: "agenda"must include anagendafield. - Empty
sections: agenda blocks require at least one section title. - Out-of-range
active_index: the active index must point to an existing section. - Wrong template layout: use agenda blocks with agenda template slides, not generic table or chart slides.
Related Guides
Presentation Generation
Generate a single agenda slide or include agenda slides in a full deck.
Slide Input
See how agenda blocks fit into the top-level
slide_data schema.Examples
Adapt complete request payloads for generated decks.