View as Markdown
HubSpot icon

HubSpot ACTION

Create Task

Create a task engagement in HubSpot. Put task fields in Object Properties as HubSpot internal names (hs_task_subject, hs_task_body, hs_task_status, hs_task_priority); hs_timestamp is defaulted for you. Optionally associate it with a record via Associated Object Type/ID + Association Type. Example: Object Properties { "hs_task_subject": "Call Art Vandelay", "hs_task_status": "NOT_STARTED", "hs_task_priority": "HIGH" }. Returns the created task with its id. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's HubSpot account once, then configure and run Create Task from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "hubspot-create-task",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    hubspot: { authProvisionId: "apn_xxxxxxx" },
    toObjectType: "Associated Object Type",
    toObjectId: "Associated Object",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Create Task inputs
Property Type Description
toObjectType Associated Object Type string
Type of object the engagement is being associated with
Optional Dynamic
toObjectId Associated Object string
ID of object the engagement is being associated with
Optional Dynamic
associationType Association Type integer
A unique identifier to indicate the association type between the task and the other object
Optional Dynamic
objectProperties Object Properties object
Enter the engagement properties as a JSON object
Required

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
hubspot-create-task
Version
1.0.1
App
HubSpot
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes