crm_archive_object
Archive CRM objects like contacts, companies, deals, and tickets from HubSpot by specifying the object type and ID to remove outdated or unused data.
Instructions
Archive (delete) a CRM object
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| objectType | Yes | ||
| objectId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"objectId": {
"type": "string"
},
"objectType": {
"enum": [
"companies",
"contacts",
"deals",
"tickets",
"products",
"line_items",
"quotes",
"custom"
],
"type": "string"
}
},
"required": [
"objectType",
"objectId"
],
"type": "object"
}