GET
/
v1
/
templates
/
{id}
curl https://api.mavioapp.com/v1/templates/tpl_default_exec \
  -H "Authorization: Bearer mvo_live_abc123"
{
  "id": "tpl_default_exec",
  "name": "Executive Summary",
  "description": "High-level overview with key decisions, action items, and next steps. Ideal for leadership updates.",
  "type": "built_in",
  "sections": [
    {
      "title": "Overview",
      "prompt": "Write a concise 2-3 sentence overview of what was discussed in this meeting, focusing on the main purpose and outcomes.",
      "type": "paragraph"
    },
    {
      "title": "Key Decisions",
      "prompt": "List the key decisions that were made during this meeting. Include who made or agreed to each decision.",
      "type": "bullet_list"
    },
    {
      "title": "Action Items",
      "prompt": "Extract all action items mentioned in the meeting. Include the assignee, description, and any mentioned deadlines.",
      "type": "table"
    },
    {
      "title": "Next Steps",
      "prompt": "Summarize the next steps and follow-up items discussed at the end of the meeting.",
      "type": "bullet_list"
    }
  ],
  "created_at": "2026-01-01T00:00:00Z",
  "updated_at": "2026-01-01T00:00:00Z"
}
Returns the full template object including all section definitions with their titles, prompts, and types. Use this to understand the structure of a template before applying it to a meeting summary.
id
string
required
The unique template identifier (e.g., tpl_default_exec or tpl_a1b2c3d4e5).

Response

id
string
Unique template identifier.
name
string
Template name.
description
string
Description of the template’s purpose.
type
string
Template type: built_in or custom.
sections
array
Ordered array of section definitions.
created_at
string
ISO 8601 timestamp when the template was created.
updated_at
string
ISO 8601 timestamp when the template was last modified.
curl https://api.mavioapp.com/v1/templates/tpl_default_exec \
  -H "Authorization: Bearer mvo_live_abc123"
{
  "id": "tpl_default_exec",
  "name": "Executive Summary",
  "description": "High-level overview with key decisions, action items, and next steps. Ideal for leadership updates.",
  "type": "built_in",
  "sections": [
    {
      "title": "Overview",
      "prompt": "Write a concise 2-3 sentence overview of what was discussed in this meeting, focusing on the main purpose and outcomes.",
      "type": "paragraph"
    },
    {
      "title": "Key Decisions",
      "prompt": "List the key decisions that were made during this meeting. Include who made or agreed to each decision.",
      "type": "bullet_list"
    },
    {
      "title": "Action Items",
      "prompt": "Extract all action items mentioned in the meeting. Include the assignee, description, and any mentioned deadlines.",
      "type": "table"
    },
    {
      "title": "Next Steps",
      "prompt": "Summarize the next steps and follow-up items discussed at the end of the meeting.",
      "type": "bullet_list"
    }
  ],
  "created_at": "2026-01-01T00:00:00Z",
  "updated_at": "2026-01-01T00:00:00Z"
}