AdlyseAdlyseMCP Docs
⌘K
Overview
adlyse-insights
list_ad_accountsget_dashboard_snapshotget_impact_analysislist_guidelinesget_guideline
adlyse-reports
list_report_templateslist_reportsget_reportgenerate_reportlist_report_targets
adlyse-ads
list_campaignsget_performancelist_adsget_ad_performancelist_change_eventsupdate_campaign_statusupdate_campaign_budget
adlyse-workflows
list_workflowsget_workflowrun_workflowget_run_status
  1. Overview/
  2. adlyse-reports

list_report_templates

List report templates available to your organization — both system-shipped and org-authored.

Parameters#

NameTypeRequiredDefaultDescription
include_systembooleannotrueInclude Adlyse-shipped templates alongside org-owned ones

Returns#

json
{
  "templates": [
    {
      "id": "ad_rtpl_abc",
      "key": "weekly_check_in",
      "version": 1,
      "name": "Weekly Check-In",
      "description": "Quick 7-day status read with wins/concerns.",
      "is_system": true,
      "default_period_days": 7,
      "sections": ["cover", "executive_summary", "abi", "headline_metrics", "top_campaigns", "ai_insights", "footer"]
    }
  ],
  "count": 1,
  "source": "adlyse.report_templates@v1"
}
FieldDescription
templates[].keyStable identifier — use in generate_report
templates[].versionBumped on every edit; active versions only are returned
templates[].is_systemtrue for Adlyse-shipped templates
templates[].default_period_daysRecommended lookback window when not overridden
templates[].sectionsOrdered list of section keys the template renders

System template keys#

  • weekly_check_in (7-day window)
  • monthly_performance (30-day window)
  • optimization_activity_log (decision-log digest)
  • executive_kpi_summary (short, numbers-first)
  • qbr_quarterly (quarterly review)

Errors#

error_typeWhen
auth_errorMissing / invalid API key

Example#

Response (truncated):

json
{
  "templates": [
    { "key": "weekly_check_in", "name": "Weekly Check-In", "is_system": true, "default_period_days": 7 },
    { "key": "monthly_performance", "name": "Monthly Performance", "is_system": true, "default_period_days": 30 },
    { "key": "my_custom_digest", "name": "Our Weekly Digest", "is_system": false, "default_period_days": 7 }
  ],
  "count": 3,
  "source": "adlyse.report_templates@v1"
}

See also#

  • generate_report — use the key from this listing
  • Reports — authoring custom templates
←Previous
adlyse-reports
Next→
list_reports