MCPMCP Tools/Review Invites/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.

Parameters
templateIdstringrequired
The id of the template to update (required).
namestringoptional
New display name.
descriptionstringoptional
New description.
contentobjectoptional
New content, as the builder's rich-text JSON shape.
assignedLocationIdsstring[]optional
Replaces the assigned location ids.
Example request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "update_invite_template",
    "arguments": {
      "templateId": "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.