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