engagement_details_create
Create new engagements with detailed activity types, titles, and associations, such as emails, calls, meetings, tasks, or notes, in HubSpot MCP.
Instructions
Create a new engagement with details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
associations | No | ||
engagement | Yes | ||
metadata | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"associations": {
"additionalProperties": false,
"properties": {
"companyIds": {
"items": {
"type": "string"
},
"type": "array"
},
"contactIds": {
"items": {
"type": "string"
},
"type": "array"
},
"dealIds": {
"items": {
"type": "string"
},
"type": "array"
},
"ownerIds": {
"items": {
"type": "string"
},
"type": "array"
},
"ticketIds": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"engagement": {
"additionalProperties": {},
"properties": {
"activityType": {
"type": "string"
},
"description": {
"type": "string"
},
"endTime": {
"type": "string"
},
"loggedAt": {
"type": "string"
},
"owner": {
"additionalProperties": false,
"properties": {
"email": {
"format": "email",
"type": "string"
},
"id": {
"type": "string"
}
},
"required": [
"id",
"email"
],
"type": "object"
},
"startTime": {
"type": "string"
},
"status": {
"type": "string"
},
"title": {
"type": "string"
},
"type": {
"enum": [
"EMAIL",
"CALL",
"MEETING",
"TASK",
"NOTE"
],
"type": "string"
}
},
"required": [
"type",
"title"
],
"type": "object"
},
"metadata": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"engagement"
],
"type": "object"
}