update_contact
Modify contact details in Microsoft MCP by specifying contact ID, account ID, and desired updates, ensuring accurate and current contact records.
Instructions
Update contact information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ||
contact_id | Yes | ||
updates | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
},
"contact_id": {
"title": "Contact Id",
"type": "string"
},
"updates": {
"additionalProperties": true,
"title": "Updates",
"type": "object"
}
},
"required": [
"contact_id",
"updates",
"account_id"
],
"type": "object"
}