MCPHerramientas MCP/Invitaciones a reseñas/update_invite_template
update_invite_template
Writereview-invite:write
Edit an existing review-invite template. Pass only the fields you want to change. Identify the template by its id (from list_invite_templates). Returns the updated template, or throws if not found.
Parámetros
templateIdstringobligatorio
The id of the template to update (required).
namestringopcional
New display name.
descriptionstringopcional
New description.
contentobjectopcional
New content, as the builder's rich-text JSON shape.
assignedLocationIdsstring[]opcional
Replaces the assigned location ids.
Solicitud de ejemplo
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "update_invite_template",
"arguments": {
"templateId": "string"
}
}
}Respuesta de ejemplo
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"content": [
{
"type": "text",
"text": "..."
}
]
}
}La forma de la respuesta se muestra a modo ilustrativo — el contenido real depende de la herramienta y de tus datos.