hubspot-get-engagement
Retrieve a specific HubSpot engagement by its unique ID to access detailed interaction data, enabling efficient CRM insights and management.
Instructions
🎯 Purpose:
1. Retrieves a HubSpot engagement by ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
engagementId | Yes | The ID of the engagement to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"engagementId": {
"description": "The ID of the engagement to retrieve",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"engagementId"
],
"type": "object"
}