MCPFerramentas MCP/Convites de avaliação/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.
Parâmetros
recipientIdstringobrigatório
The id of the recipient to update (required).
namestringopcional
Corrected name.
emailstringopcional
Corrected email address.
phonestringopcional
Corrected phone number.
contactType"Customer" | "Lead" | "Prospect" | "Contact"opcional
Contact type.
Exemplo de solicitação
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "update_campaign_recipient",
"arguments": {
"recipientId": "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.