crm_archive_association
Archive associations between HubSpot CRM objects like contacts, companies, deals, and tickets to maintain clean data relationships and remove outdated connections.
Instructions
Archive (delete) an association between two objects
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fromObjectType | Yes | ||
| toObjectType | Yes | ||
| fromObjectId | Yes | ||
| toObjectId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"fromObjectId": {
"type": "string"
},
"fromObjectType": {
"enum": [
"companies",
"contacts",
"deals",
"tickets",
"products",
"line_items",
"quotes",
"custom"
],
"type": "string"
},
"toObjectId": {
"type": "string"
},
"toObjectType": {
"enum": [
"companies",
"contacts",
"deals",
"tickets",
"products",
"line_items",
"quotes",
"custom"
],
"type": "string"
}
},
"required": [
"fromObjectType",
"toObjectType",
"fromObjectId",
"toObjectId"
],
"type": "object"
}