create_shared_summary
Generate and share a conversation summary with your team in real time, linked to specific company and user IDs using HubSpot CRM data and operations.
Instructions
Create a new conversation summary in the shared space
Input Schema
Name | Required | Description | Default |
---|---|---|---|
company_id | Yes | Company ID | |
summary | Yes | The conversation summary text | |
user_id | Yes | User email/ID creating the summary |
Input Schema (JSON Schema)
{
"properties": {
"company_id": {
"description": "Company ID",
"type": "string"
},
"summary": {
"description": "The conversation summary text",
"type": "string"
},
"user_id": {
"description": "User email/ID creating the summary",
"type": "string"
}
},
"required": [
"user_id",
"company_id",
"summary"
],
"type": "object"
}