hubspot-get-property
Retrieve detailed metadata about a specific property for HubSpot object types, including type, options, and configuration details, to ensure accurate data mapping and integration.
Instructions
🎯 Purpose:
1. This tool retrieves detailed information about a specific property for a HubSpot object type.
2. You can use this to get all metadata related to a property, including its type, options,
and other configuration details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
objectType | Yes | The type of HubSpot object the property belongs to. Valid values include: appointments, companies, contacts, courses, deals, leads, line_items, listings, marketing_events, meetings, orders, postal_mail, products, quotes, services, subscriptions, tickets, users. For custom objects, use the hubspot-get-schemas tool to get the objectType. | |
propertyName | Yes | The name of the property to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"objectType": {
"description": "The type of HubSpot object the property belongs to. Valid values include: appointments, companies, contacts, courses, deals, leads, line_items, listings, marketing_events, meetings, orders, postal_mail, products, quotes, services, subscriptions, tickets, users. For custom objects, use the hubspot-get-schemas tool to get the objectType.",
"type": "string"
},
"propertyName": {
"description": "The name of the property to retrieve",
"type": "string"
}
},
"required": [
"objectType",
"propertyName"
],
"type": "object"
}