monica_get_contact_summary
Retrieve comprehensive profile details for a specific contact ID in Monica CRM. Use after searching or creating contacts to access full information before making updates. Requires contactId as input.
Instructions
Retrieve full profile details for a specific contact ID. Use this after searching to see complete contact information before making updates. DEPENDENCY: Requires contactId - use monica_search_contacts to find existing contacts or monica_manage_contact with action="create" to create a new contact first.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contactId | Yes | ||
includeContactFields | No |
Input Schema (JSON Schema)
{
"properties": {
"contactId": {
"exclusiveMinimum": 0,
"type": "integer"
},
"includeContactFields": {
"type": "boolean"
}
},
"required": [
"contactId"
],
"type": "object"
}