create_contact_activity
Add a new activity for a contact in Kommo CRM by specifying the activity type, description, and responsible user to streamline task management and tracking.
Instructions
Create a new activity for a contact
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contact_id | Yes | ID of the contact | |
responsible_user_id | No | ID of responsible user | |
text | No | Activity description | |
type | Yes | Type of activity |
Input Schema (JSON Schema)
{
"properties": {
"contact_id": {
"description": "ID of the contact",
"type": "number"
},
"responsible_user_id": {
"description": "ID of responsible user",
"type": "number"
},
"text": {
"description": "Activity description",
"type": "string"
},
"type": {
"description": "Type of activity",
"type": "string"
}
},
"required": [
"contact_id",
"type"
],
"type": "object"
}