Skip to main content
GET
/
v2
/
api
/
summary_templates
/
{id}
Get summary template
curl --request GET \
  --url https://api.withallo.com/v2/api/summary_templates/{id} \
  --header 'Authorization: <api-key>'
{
  "data": {
    "id": "tst-abc123",
    "name": "Sales call",
    "call_context": "B2B SaaS sales calls",
    "icon": "📞",
    "sections": [
      {
        "title": "Pain points",
        "instructions": "List the prospect's pain points",
        "order": 0
      },
      {
        "title": "Next steps",
        "instructions": "What was agreed",
        "order": 1
      }
    ],
    "created_at": "2026-06-01T10:00:00",
    "updated_at": "2026-06-01T10:00:00"
  }
}
Required scope: SUMMARY_TEMPLATES_READ
Returns a single summary template by its ID (tst-*). Returns 404 with code SUMMARY_TEMPLATE_NOT_FOUND if no active template with that ID exists for your team.

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required

Summary template ID (tst-*)

Example:

"tst-abc123"

Response

Summary template

data
object