MCPFerramentas MCP/Convites de avaliação/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
templateIdstringobrigatório
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.
Exemplo de solicitação
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "update_invite_template",
    "arguments": {
      "templateId": "string"
    }
  }
}
Exemplo de resposta
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "..."
      }
    ]
  }
}

O formato da resposta é ilustrativo — o conteúdo real depende da ferramenta e dos seus dados.