MCPMCP Tools/Review Invites/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.
Parameters
recipientIdstringrequired
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.
Example request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "update_campaign_recipient",
"arguments": {
"recipientId": "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.