delete_contact
Remove a specific contact by providing the contact ID and account ID using the Microsoft MCP server. Simplify contact management by deleting unnecessary entries.
Instructions
Delete a contact
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ||
contact_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
},
"contact_id": {
"title": "Contact Id",
"type": "string"
}
},
"required": [
"contact_id",
"account_id"
],
"type": "object"
}