tasks_get
Retrieve detailed information about a specific HubSpot task including properties and associated contacts, companies, deals, or tickets using the task ID.
Instructions
Get details of a specific task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| taskId | Yes | ||
| properties | No | ||
| associations | No |
Input Schema (JSON Schema)
{
"properties": {
"associations": {
"items": {
"enum": [
"contacts",
"companies",
"deals",
"tickets"
],
"type": "string"
},
"type": "array"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"taskId": {
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}