MCPMCP-Tools/Bewertungseinladungen/update_campaign_recipient

update_campaign_recipient

Writereview-invite:write

Correct a review-invite recipient's details — name, email, phone or contact type. Pass only the fields you're changing. Identify the recipient by id (from find_campaign_recipients or list_campaign_recipients). Editing email or phone on a contact who has ALREADY been messaged is refused: the delivered message and any reply are tied to the address it went to, so changing it would misattribute them. Returns the updated contact.

Parameter
recipientIdstringerforderlich
The id of the recipient to update (required).
namestringoptional
Corrected name.
emailstringoptional
Corrected email address.
phonestringoptional
Corrected phone number.
contactType"Customer" | "Lead" | "Prospect" | "Contact"optional
Contact type.
Beispielanfrage
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "update_campaign_recipient",
    "arguments": {
      "recipientId": "string"
    }
  }
}
Beispielantwort
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "..."
      }
    ]
  }
}

Die Antwortform dient nur zur Veranschaulichung — der tatsächliche Inhalt hängt vom Tool und Ihren Daten ab.