MCPMCP Tools/Review Invites/create_invite_template
create_invite_template
Writereview-invite:write
Create a reusable review-invite message template. `content` is the rich-text JSON shape the campaign builder's editor produces (pass the same shape as an existing template's `content` if adapting one). Optionally assign it to specific locations so it shows as a suggested template there. Returns the created template.
Parameters
namestringrequired
The template's display name (required).
descriptionstringoptional
A short description of when to use this template.
contentobjectoptional
The template content, as the builder's rich-text JSON shape.
assignedLocationIdsstring[]optional
Location ids this template is suggested for. Omit to make it available agency-wide.
Example request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "create_invite_template",
"arguments": {
"name": "string"
}
}
}Example response
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"content": [
{
"type": "text",
"text": "..."
}
]
}
}Response shape shown for illustration — the actual content depends on the tool and your data.