Integration
Connect Google Drive to HubSpot
When something happens in Google Drive, your agent does the next thing in HubSpot. Describe it in plain language and the automation is built, tested on every branch and kept running.
Build it
What do you want Google Drive and HubSpot to do together?
Describe it and your agent reads both APIs, builds the automation, tests every branch and ships it. The list below is what exists today, not the limit.
Ask the assistant
You'll sign in before anything runs. What you typed comes with you.
Or work from Claude Code
Install the APIANT plugin for Claude Code and build, edit, test and read run history from your terminal. Every plan gets this, including free, and it spends no assistant credits.
Connect Claude CodeEverything your agent can do with Google Drive and HubSpot
Triggers and actions 36 triggers ยท 179 actions
Trigger
Comment Added (Docs/Sheets/Slides)Triggers when a new comment is added to Google Docs, Sheets, or Slides.
Trigger
File CreatedTriggers when a new file is created in Google Drive.
Trigger
File Deleted or TrashedTriggers when a file is moved to trash or permanently deleted in Drive.
Trigger
File Shared (Permissions Added)Triggers when new sharing permissions are granted to a file or folder. Uses Drive's `changes.list` endpoint with inline `permissions` in the `fields` mask so each change carries the file's current permission set provider-atomically. We diff that against `seen_permission_keys` to identify newly added grants. Drive page tokens are the primary cursor; if Drive rejects a stored token, the trigger raises `PollingTriggerError` without clearing state rather than silently re-baselining and dropping events. Limitation: truly ephemeral permissions (added and revoked between two polls without any other file modification in between) are not detected. Drive Activity API would catch those but requires an additional OAuth scope and a different payload contract.
Trigger
File UpdatedTriggers when a file's metadata or content changes in Google Drive.
Trigger
Google Drive ChangesTriggers when changes are detected in a Google Drive.
Trigger
New File Matching QueryTriggers when a new Google Drive file matches a provided query. This is the legacy query-centric trigger: it preserves Drive API query config such as ``corpora`` / ``driveId`` aliases and emits the historical ``file_matching_query`` event type. ``FileCreatedTrigger`` covers the broader "new file" case and emits ``file_created``.
Action
Add File Sharing PreferenceModifies sharing permissions for an existing google drive file, granting a specified role to a user, group, domain, or 'anyone'.
Action
Copy FileDuplicates an existing file in google drive, identified by its `file id`.
Action
Create CommentTool to create a comment on a file. use when you need to add a new comment to a specific file in google drive.
Action
Create FileCreates a new file or folder with metadata. use to create empty files or folders, or files with content by providing it in the request body (though this action primarily focuses on metadata creation).
Action
Create File From TextCreates a new file in google drive from provided text content (up to 10mb), supporting various formats including automatic conversion to google workspace types.
Action
Create FolderCreates a new folder in google drive, optionally within a parent folder specified by its id or name; if a parent name is provided but not found, the action will fail.
Action
Create ReplyTool to create a reply to a comment in google drive. use when you need to respond to an existing comment on a file.
Action
Create Shortcut To FileTool to create a shortcut to a file or folder in google drive. use when you need to link to an existing drive item from another location without duplicating it.
Action
Delete CommentDeletes a comment from a file. use when you need to remove a specific comment from a google drive file.
Action
Delete PermissionDeletes a permission from a file by permission id. use when you need to revoke access for a specific user or group from a file.
Action
Delete ReplyTool to delete a specific reply by reply id. use when you need to remove a reply from a comment on a file.
Action
Download FileDownloads a file from google drive by its id. for google workspace documents (docs, sheets, slides), optionally exports to a specified `mime type`. for other file types, downloads in their native format regardless of mime type.
Action
Edit FileUpdates an existing google drive file by overwriting its entire content with new text (max 10mb).
Action
Empty TrashTool to permanently delete all of the user's trashed files. use when you want to empty the trash in google drive.
Action
Find FileTool to list or search for files and folders in google drive. use when you need to find specific files based on query criteria or list contents of a drive/folder.
Action
Find FolderTool to find a folder in google drive by its name and optionally a parent folder. use when you need to locate a specific folder to perform further actions like creating files in it or listing its contents.
Action
Generate IdsGenerates a set of file ids which can be provided in create or copy requests. use when you need to pre-allocate ids for new files or copies.
Action
Get AboutTool to retrieve information about the user, the user's drive, and system capabilities. use when you need to check storage quotas, user details, or supported import/export formats.
Action
Get Changes Start Page TokenTool to get the starting pagetoken for listing future changes in google drive. use this when you need to track changes to files and folders.
Action
Get CommentTool to get a comment by id. use when you need to retrieve a specific comment from a google drive file and have both the file id and comment id.
Action
Get File MetadataTool to get a file's metadata by id. use when you need to retrieve the metadata for a specific file in google drive.
Action
Get PermissionGets a permission by id. use this tool to retrieve a specific permission for a file or shared drive.
Action
Get ReplyTool to get a specific reply to a comment on a file. use when you need to retrieve the details of a particular reply.
Action
Get RevisionTool to get a specific revision's metadata by revision id. use when you need to retrieve information about a particular version of a file.
Action
Google Drive Delete Folder Or File ActionTool to delete a file or folder in google drive. use when you need to permanently remove a specific file or folder using its id. note: this action is irreversible.
Action
List ChangesTool to list the changes for a user or shared drive. use when you need to track modifications to files and folders, such as creations, deletions, or permission changes. this action requires a `pagetoken` which can be initially obtained using the `get changes start page token` action or from a previous `list changes` response.
Action
List CommentsTool to list all comments for a file in google drive. use when you need to retrieve comments associated with a specific file.
Action
List File LabelsTool to list the labels on a file. use when you need to retrieve all labels associated with a specific file in google drive.
Action
List FilesTool to list a user's files and folders in google drive. use this to search or browse for files and folders based on various criteria.
Action
List PermissionsTool to list a file's permissions. use when you need to retrieve all permissions associated with a specific file or shared drive.
Action
List Replies To CommentTool to list replies to a comment in google drive. use this when you need to retrieve all replies associated with a specific comment on a file.
Action
List RevisionsTool to list a file's revisions. use when you need to retrieve the revision history of a specific file in google drive.
Action
List Shared DrivesTool to list the user's shared drives. use when you need to get a list of all shared drives accessible to the authenticated user.
Action
Move FileTool to move a file from one folder to another in google drive. use when you need to reorganize files by changing their parent folder(s).
Action
Parse FileDeprecated: exports google workspace files (max 10mb) to a specified format using `mime type`, or downloads other file types; use `googledrive download file` instead.
Action
Stop Watch ChannelTool to stop watching resources through a specified channel. use this when you want to stop receiving notifications for a previously established watch.
Action
Update CommentTool to update an existing comment on a google drive file. use when you need to change the content or status (e.g., resolve) of a comment.
Action
Update File PutUpdates file metadata. uses patch semantics (partial update) as per google drive api v3. use this tool to modify attributes of an existing file like its name, description, or parent folders. note: this action currently supports metadata updates only. file content updates require multipart/related upload and are not yet implemented.
Action
Update File Revision MetadataUpdates metadata of a file revision (e.g., keepforever, publish). use this tool to modify the metadata of a specific revision of a file in google drive.
Action
Update PermissionTool to update a permission with patch semantics. use when you need to modify an existing permission for a file or shared drive.
Action
Update ReplyTool to update a reply to a comment on a google drive file. use when you need to modify the content of an existing reply.
Action
Watch ChangesTool to subscribe to changes for a user or shared drive in google drive. use when you need to monitor a google drive for modifications and receive notifications at a specified webhook url.
Trigger
Company deletedTriggered on deletion of existing company. Should only be set up with one account per organization, as all user accounts within an organization share the same portalId (unique identifier).
Trigger
Contact deletedTriggered on deletion of existing contact. Should only be set up with one account per organization, as all user accounts within an organization share the same portalId (unique identifier).
Trigger
Deal deletedTriggered on deletion of existing deal. Should only be set up with one account per organization, as all user accounts within an organization share the same portalId (unique identifier).
Trigger
Deal stage changedTriggers when a deal moves to a new stage in a pipeline.
Trigger
Form submittedTriggered when a new submission is received for the specified form.
Trigger
New associated objectTriggers when a new record of one CRM object type becomes associated with a record of another object type (for example, a deal linked to a company).
Trigger
New blog postTriggers on a new blog post added to the selected blog.
Trigger
New calendar task +30dTriggered when a new calendar task is created in the next 30 days. Note: this applies to HubSpot (Marketing), and not HubSpot CRM's tasks. Note: only supports up to 499 tasks in the next 30 days, an error will occur if more than 499 tasks exist.
Trigger
New companyTriggered when a new company is added.
Trigger
New company (instant)Triggered on creation of new company. Should only be set up with one account per organization, as all user accounts within an organization share the same portalId (unique identifier).
Trigger
New contactTriggered on creation of new contact. Should only be set up with one account per organization, as all user accounts within an organization share the same portalId (unique identifier).
Trigger
New dealTriggered on creation of new deal. Should only be set up with one account per organization, as all user accounts within an organization share the same portalId (unique identifier).
Trigger
New note added to contactTriggered when a note is added to a contact. NOTE: notes can be associated to multiple contacts.
Trigger
New or changed engagementsTriggers on new or changed engagements.
Trigger
New or updated companyTriggered when a company is created or modified
Trigger
New or updated contactTriggers on new or updated contacts.
Trigger
New or updated contact (Custom Fields Included)Triggered when a contact is created or updated.
Trigger
New or updated dealTriggered when a deal is created or updated.
Trigger
New or updated ticketTriggered when a ticket is created or updated.
Trigger
New social media messageTriggered when a new social media message is added.
Trigger
New ticketTriggers when new ticket is available.
Trigger
Ticket property changedTriggers when any property of a ticket changes.
Trigger
Two-way sync new or updated companiesA trigger for two-way syncing new and updated companies, with enhanced on-the-fly mapping. Can only be used with enhanced two-way sync actions that support on-the-fly mapping.
Trigger
Two-way sync new or updated contactsA trigger for two-way syncing new and updated contacts, with enhanced on-the-fly mapping. Can only be used with enhanced two-way sync actions that support on-the-fly mapping.
Trigger
Updated company custom propertyTriggered when the selected custom property is updated on a company. Should only be set up with one account per organization, as all user accounts within an organization share the same portalId (unique identifier).
Trigger
Updated contactTriggered when a contact is updated.
Trigger
Updated contact custom propertyTriggered when the selected custom property is updated on a contact. Should only be set up with one account per organization, as all user accounts within an organization share the same portalId (unique identifier).
Trigger
Updated contact custom property by nameTriggered when the specified custom property is updated on a contact. Should only be set up with one account per organization, as all user accounts within an organization share the same portalId (unique identifier).
Trigger
Updated deal custom propertyTriggered when the selected custom property is updated on a deal. Should only be set up with one account per organization, as all user accounts within an organization share the same portalId (unique identifier).
Action
Add companyAdds a new company.
Action
Add contactAdds a new contact. An error occurs if the email already exists. If a company name is found, the contact is associated with the company. Emits the contact ID if added.
Action
Add contact to listAdds a contact to the specified contact list.
Action
Add contact to workflowEnrolls a contact to a workflow provided the workflow ID and the contact email.
Action
Add custom object recordAdds a record to the specified custom object.
Action
Add dealCreates a new deal and optionally associates it with a contact and/or company.
Action
Add meetingCreates a meeting engagement.
Action
Add or update companyAdds a new company if the name does not already exist, otherwise updates the existing company. Only non-empty properties are updated.
Action
Add or update contactAdds or updates a contact. If a company name is found, the contact is associated with the company. The ID of the added/updated contact is emitted as output.
Action
Add or update dealSearches for a deal by name. If found it updates it, if not it adds it. If a contact email or company name is provided, the deal is associated with them if found.
Action
Add ticketAdds a new ticket.
Action
Append company dropdown property valuesAppends one or more values to a company dropdown property. An error occurs if the named property is not found.
Action
Append company multi-select property dropdown valuesAppends one or more dropdown values to a company multi-select property. An error occurs if the named property is not found.
Action
Append contact dropdown property valuesAppends one or more values to a contact dropdown property. An error occurs if the named property is not found.
Action
Append contact multi-select property dropdown valuesAppends one or more dropdown values to a contact multi-select property. An error occurs if the named property is not found.
Action
Append deal dropdown property valuesAppends one or more values to a deal dropdown property. An error occurs if the named property is not found.
Action
Append deal multi-select property dropdown valuesAppends one or more dropdown values to a deal multi-select property. An error occurs if the named property is not found.
Action
Append ticket dropdown property valuesAppends one or more values to a ticket dropdown property. An error occurs if the named property is not found.
Action
Append ticket multi-select property valuesAppends one or more values to a ticket multi-select property. An error occurs if the named property is not found.
Action
Clear contact property valueErases the value of specified property for the specified contact.
Action
Clear deal property valueErases the value of specified property for the specified deal.
Action
Clear ticket property valueErases the value of specified property for the specified ticket.
Action
Convert to valid property nameConverts a string value into a valid property name. Property names must begin with a letter and contain only up to 100 lowercase letters, numbers, or underscores, without any spaces, commas, or special characters.
Action
Copy workflowCopies the specified workflow. The new workflow will have "COPY" appended to its name.
Action
Create a blog postCreates a new blog post
Action
Create a company property: boolean checkboxCreates a boolean checkbox company property. No error occurs if the property already exists.
Action
Create a company property: dropdown selectCreates a dropdown select list company property. No error occurs if the property already exists.
Action
Create a company property groupCreates a company property group. No error occurs if the group already exists.
Action
Create a company property: multi-selectCreates a multi-select list company property. No error occurs if the property already exists.
Action
Create a company property: single valueCreates a company property that can be a single value such as text strings, numbers, dates, and datetimes. No error occurs if the property already exists.
Action
Create a contact listCreates a contact list. An error occurs if the list already exists.
Action
Create a contact property: boolean checkboxCreates a boolean checkbox contact property. No error occurs if the property already exists.
Action
Create a contact property: dropdown selectCreates a dropdown select list contact property. No error occurs if the property already exists.
Action
Create a contact property groupCreates a contact property group. No error occurs if the group already exists.
Action
Create a contact property: multi-selectCreates a multi-select list contact property. No error occurs if the property already exists.
Action
Create a contact property: single valueCreates a contact property that can be a single value such as text strings, numbers, dates, and datetimes. No error occurs if the property already exists.
Action
Create a deal pipeline and stagesCreates a new deal pipeline and up to 10 stages.
Action
Create a deal propertyCreates a deal property. No error occurs if the property already exists.
Action
Create a deal property: boolean checkboxCreates a boolean checkbox deal property. No error occurs if the property already exists.
Action
Create a deal property: dropdown selectCreates a dropdown select list deal property. No error occurs if the property already exists.
Action
Create a deal property groupCreates a deal property group. No error occurs if the group already exists.
Action
Create a deal property: multi-selectCreates a multi-select list deal property. No error occurs if the property already exists.
Action
Create a deal property: single valueCreates a deal property that can be a single value such as text strings, numbers, dates, and datetimes. No error occurs if the property already exists.
Action
Create an email engagementCreates a new engagement.
Action
Create a note engagementCreates a note engagement.
Action
Create associationCreates an association between two objects
Action
Create association: contact to contactCreates an association between two contacts
Action
Create association typeCreates an association type between two objects. An error occurs if the association already exists.
Action
Create a task engagementCreates a new task engagement.
Action
Create a ticket property: boolean checkboxCreates a boolean checkbox ticket property. No error occurs if the property already exists.
Action
Create a ticket property: dropdown selectCreates a dropdown select list ticket property. No error occurs if the property already exists.
Action
Create a ticket property groupCreates a ticket property group. No error occurs if the group already exists.
Action
Create a ticket property: multi-selectCreates a multi-select list ticket property. No error occurs if the property already exists.
Action
Create a ticket property: single valueCreates a ticket property that can be a single value such as text strings, numbers, dates, and datetimes. No error occurs if the property already exists.
Action
Create custom associationCreates an association between two objects using a custom association type. Use the "get association types" action to obtain the custom association type.
Action
Create recordCreates a record of the selected CRM object type with the supplied properties.
Action
CRM card: set display valuesBuilds the results payload a HubSpot CRM card data-fetch request expects: one card entry carrying the record id it describes, its title, an optional link, and the property rows to display.
Action
Delete contactDeletes a contact provided its contact ID.
Action
Delete contact listDeletes a contact list specified by ID.
Action
Delete contact secondary emailDeletes the specified secondary email for the specified contact. An error will occur if either the contact or secondary email is not found.
Action
Delete dealDeletes a deal provided its deal ID.
Action
Delete recordDeletes a record of the selected CRM object type by ID.
Action
Delete ticketDeletes a ticket provided a ticket ID.
Action
Find companies associated to contactReturns up to 500 company IDs associated with the specified contact
Action
Find company by nameSearches for a company by name (case-insensitive) and emits the company's ID. Zero, one, or multiple ID's may be emitted.
Action
Find company by propertySearches for a company by property (case-insensitive) and emits the company's information. Only the first matching company is emitted. If no matches are found, an error occurs.
Action
Find contact by emailFinds a contact by email. If the contact is not found, no information is emitted and no error occurs.
Action
Find contact by propertySearch HubSpot contacts by any property name/value pair (EQ filter). Returns the first matching contact's standard fields.
Action
Find contact list by nameLook up a contact list by its name and return its v3 list id. Use this instead of 'Get all contact lists' whenever the id will be passed to a v3 endpoint such as 'Add contact to list': the v1 lists endpoint returns ids from a different id space, and feeding a v1 id to a v3 endpoint silently targets a different list.
Action
Find contacts by propertyReturns contact IDs for all contacts matching the specified property value.
Action
Find custom object records associated to contactGiven a HubSpot contact ID and a custom object type, returns the IDs of all custom object records associated to that contact. Paginated via the v4 associations API. Used by the CRMConnect v3.8 membership reconciliation pass.
Action
Find custom object records by propertyReturns record IDs for all records of the specified custom object matching the specified property value.
Action
Find deal by nameSearches for a deal by name (case-insensitive) and emits the company's ID. Zero, one, or multiple ID's may be emitted.
Action
Find deal by propertySearches for a deal by property (case-insensitive) and emits its information. Only the first matching deal is emitted. If no matches are found, an error occurs.
Action
Find deals associated to companyReturns up to 500 deal IDs associated with the specified company
Action
Find deals associated to contactReturns up to 500 deal IDs associated with the specified contact
Action
Find owner by emailFetches owner details for an owner with the specified email address.
Action
Find pipeline by nameFinds a pipeline provided its name and its type.
Action
Find recently modified dealsReturns recently modified deals.
Action
Get associated records with labelsList the records associated to a record, including the label and type of each association.
Action
Get association typesReturns all association types between the specified two object types.
Action
Get calls for contactReturns all calls with the specified contact, optionally within a specified datetime range.
Action
Get calls for dealReturns all calls with the specified deal, optionally within a specified datetime range.
Action
Get companyReturns company details for the specified ID.
Action
Get contactReturns contact details for the specified ID.
Action
Get contact listRead a single contact list by its ID.
Action
Get contact secondary emailsReturns all secondary emails for the specified contact.
Action
Get custom object records batch by IDsGiven a custom object type, a comma-separated list of record IDs, and a comma-separated list of property API names, returns one record per ID with the requested properties, one batch per call. Used by the CRMConnect v3.8 membership reconciliation pass.
Action
Get dealReturns details for the deal with the specified ID.
Action
Get emails for contactReturns all emails with the specified contact, optionally within a specified datetime range.
Action
Get emails for dealReturns all emails with the specified deal, optionally within a specified datetime range.
Action
Get meetings for contactReturns all meetings with the specified contact, optionally within a specified datetime range.
Action
Get meetings for dealReturns all meetings with the specified deal, optionally within a specified datetime range.
Action
Get notes for contactReturns all notes with the specified contact, optionally within a specified datetime range.
Action
Get notes for dealReturns all notes with the specified deal, optionally within a specified datetime range.
Action
Get Object by Field ValueLooks up a record of the selected HubSpot CRM object type by an exact match on a single property (the Object, Field, and Value settings), returning the first matching record ID.
Action
Get object property infoReturns information for the specified property for the specified company, contact, or deal object type.
Action
Get ownerReturns details for the owner with the specified ID.
Action
Get recordReturns a single record of the selected CRM object type by ID.
Action
Get tasks for contactReturns all tasks with the specified contact, optionally within a specified datetime range.
Action
Get tasks for dealReturns all tasks with the specified deal, optionally within a specified datetime range.
Action
Get ticketReturns details for the ticket with the specified ID.
Action
Get total number of contacts having propertyReturns the total number of contacts having the specified property.
Action
Import records from CSV into objectImports records from a CSV file into a specified object.
Action
List all workflowsReturns the name and id of all workflows visible in the portal.
Action
List contact IDs of a companyGiven a company ID, finds all contacts in that company.
Action
List contact list memberships (v3)Returns the contacts that are currently members of a HubSpot contact list, identified by the list's v3 (ILS) id.
Action
List ownersReturns a list of HubSpot account owners, supporting pagination and optional filtering by email.
Action
List pipelinesReturns the pipelines for deals or tickets, depending on which object type you select.
Action
List pipeline stagesReturns the stages in a specific deal or ticket pipeline.
Action
List recordsLists records of the selected CRM object type.
Action
Log callCreates a call engagement.
Action
Merge contactsMerge two contact records. The contact ID will be treated as the primary contact, and the contact ID to merge will be treated as the secondary contact. Most recent property values such as email and name will overwrite older values. For more information please visit: https://knowledge.hubspot.com/contacts/how-do-i-merge-contacts#what
Action
Parse property option errorsEmits arrays of property and option names parsed from the input error message. Empty arrays are emitted if the input error message is empty.
Action
Remove contact from list (v3)Removes a contact from a HubSpot contact list, using the list's v3 (ILS) id. Only MANUAL and SNAPSHOT lists accept membership changes.
Action
Search contact lists (v3)Returns the contact lists in the connected HubSpot account, optionally narrowed by a name search, processing type, or object type. Each list comes back with its ILS (v3) list id, name and processing type.
Action
Search recordsSearches records of the selected CRM object type by filter criteria.
Action
Submit a formSubmits a form to the Forms API
Action
Two-way sync add or update a companyAn action for two-way syncing new and updated companies, with enhanced on-the-fly mapping using company names for matching. Can only be used with enhanced two-way sync triggers that support on-the-fly mapping.
Action
Unsubscribe contact from all listsUnsubscribes a contact from all lists.
Action
Update companyUpdates an existing company specified by ID. A field you map but leave EMPTY is IGNORED - the stored value is preserved, not erased. Because of that, this action cannot CLEAR a property: to empty one, edit it in HubSpot directly.
Action
Update company multi-select property - check valueUpdates the specified multi-select property for the specified company such that the specified value is checked if not already checked.
Action
Update company multi-select property - uncheck valueUpdates the specified multi-select property for the specified company such that the specified value is unchecked (removed).
Action
Update contactUpdates an existing contact specified by ID. A field you map but leave EMPTY is IGNORED - the stored value is preserved, not erased. Because of that, this action cannot CLEAR a property: to empty one, edit it in HubSpot directly.
Action
Update contact multi-select property - check valueUpdates the specified multi-select property for the specified contact such that the specified value is checked if not already checked.
Action
Update contact multi-select property - uncheck valueUpdates the specified multi-select property for the specified contact such that the specified value is unchecked (removed).
Action
Update contact propertiesUpdates the values of up to 6 specified properties for the specified contact. A field you map but leave EMPTY is IGNORED - the stored value is preserved, not erased. Because of that, this action cannot CLEAR a property: to empty one, edit it in HubSpot directly.
Action
Update custom object multi-select property - check valueUpdates the specified multi-select property for the specified custom object record such that the specified value is checked if not already checked.
Action
Update custom object recordUpdates a specified record in the specified custom object.
Action
Update custom object record pipeline and stageUpdates the specified custom object record to place it in the specified pipeline and stage.
Action
Update dealUpdates an existing deal specified by ID. A field you map but leave EMPTY is IGNORED - the stored value is preserved, not erased, and the related calculated amounts (amount in home currency, forecast amount) are left intact. Because of that, this action cannot CLEAR a property: to empty one, edit it in HubSpot directly.
Action
Update deal multi-select property - check valueUpdates the specified multi-select property for the specified deal such that the specified value is checked if not already checked.
Action
Update deal multi-select property - uncheck valueUpdates the specified multi-select property for the specified deal such that the specified value is unchecked (removed).
Action
Update recordUpdates properties on a record of the selected CRM object type by ID. A field you map but leave EMPTY is IGNORED - the stored value is preserved, not erased. Because of that, this action cannot CLEAR a property: to empty one, edit it in HubSpot directly.
Action
Update ticket multi-select property - check valueUpdates the specified multi-select property for the specified ticket such that the specified value is checked if not already checked.
Action
Update ticket multi-select property - uncheck valueUpdates the specified multi-select property for the specified ticket such that the specified value is unchecked.
Action
Upload FilesImports a file into the HubSpot File Manager from a public URL (asynchronous import). Set the source URL plus optional name, public/indexable access, and hidden flag; emits the created file reference.
No trigger or action matches that. Ask your agent to add it: it reads the API documentation and builds what you describe.