Fetch Multiple Feedback Submissions By Id Or Attributes
This API endpoint supports batch retrieval of feedback using IDs or properties,
with OAuth2 and private app authentication. Users can submit a JSON with
identifiers to access archived data, re
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.HUBSPOT_FETCH_MULTIPLE_FEEDBACK_SUBMISSIONS_BY_ID_OR_ATTRIBUTES])
Archive A Batch Of Feedback Submissions By Id
The `/crm/v3/objects/feedback_submissions/batch/archive` endpoint allows
archiving multiple feedback submissions via POST, using OAuth2 or private
credentials for security. It returns a 204 st
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.HUBSPOT_ARCHIVE_A_BATCH_OF_FEEDBACK_SUBMISSIONS_BY_ID])
Create A Batch Of Feedback Submissions
This endpoint facilitates batch creation of feedback submissions with customizable
properties and associations, supporting OAuth and private app security.
It returns details like completion st
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.HUBSPOT_CREATE_A_BATCH_OF_FEEDBACK_SUBMISSIONS])
Update A Batch Of Feedback Submissions
The `POST /crm/v3/objects/feedback_submissions/batch/update` endpoint updates
feedback in batches in a CRM. It uses OAuth2 or private app authentication,
accepts arrays of IDs and properties,
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.HUBSPOT_UPDATE_A_BATCH_OF_FEEDBACK_SUBMISSIONS])
Batch Fetch Crm Objects By Id Or Properties
The `POST /crm/v3/objects/{objectType}/batch/read` endpoint allows batch
fetching of CRM objects by ID/properties for OAuth2/private apps, with an
optional 'archived' filter, returning a JSON
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.HUBSPOT_BATCH_FETCH_CRM_OBJECTS_BY_ID_OR_PROPERTIES])
Archive A Batch Of Objects By Id
The `POST /crm/v3/objects/{objectType}/batch/archive` endpoint archives
batches of CRM objects by ID. It accepts multiple authorization methods
and a JSON body with object IDs. Successful requ
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.HUBSPOT_ARCHIVE_A_BATCH_OF_OBJECTS_BY_ID])
Create A Batch Of Objects
This endpoint enables batch creation of CRM objects of a specified type,
requiring a JSON body with properties and associations. It supports multiple
security schemes and provides responses in
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.HUBSPOT_CREATE_A_BATCH_OF_OBJECTS])
Batch Update Crm Objects By Id Or Properties
The `POST /crm/v3/objects/{objectType}/batch/update` endpoint allows updating
multiple CRM objects simultaneously, using ID or a unique property. It requires
OAuth and private app permissions,
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.HUBSPOT_BATCH_UPDATE_CRM_OBJECTS_BY_ID_OR_PROPERTIES])
Fetch Batch Of Tickets By Id Or Properties
The "/crm/v3/objects/tickets/batch/read" endpoint fetches multiple tickets
using JSON, including archived ones, by ID or properties, and returns details
like timestamps and status. It supports
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.HUBSPOT_FETCH_BATCH_OF_TICKETS_BY_ID_OR_PROPERTIES])