awork

Your smart digital assistant

Integrate the awork API with the HubSpot API

Setup the awork API trigger to run a workflow which integrates with the HubSpot API. Pipedream's integration platform allows you to integrate awork and HubSpot remarkably fast. Free for developers.

Add Contact to List with HubSpot API on New Task (Instant) from awork API
awork + HubSpot
 
Try it
Add Contact to List with HubSpot API on New Time Entry (Instant) from awork API
awork + HubSpot
 
Try it
Add Contact to List with HubSpot API on New Updated Time Entry (Instant) from awork API
awork + HubSpot
 
Try it
Batch Create or Update Contact with HubSpot API on New Task (Instant) from awork API
awork + HubSpot
 
Try it
Batch Create or Update Contact with HubSpot API on New Time Entry (Instant) from awork API
awork + HubSpot
 
Try it
Company Updated from the HubSpot API

Emit new event each time a company is updated.

 
Try it
New Task (Instant) from the awork API

Emit new event on each created task.

 
Try it
Contact Updated from the HubSpot API

Emit new event each time a contact is updated.

 
Try it
New Time Entry (Instant) from the awork API

Emit new event on each created time entry.

 
Try it
New Updated Time Entry (Instant) from the awork API

Emit new event on each updated time entry.

 
Try it
Create Client with the awork API

Creates a client. See docs here

 
Try it
Add Contact to List with the HubSpot API

Adds a contact to a specific static list. See the documentation

 
Try it
Create Project with the awork API

Creates a project. See docs here

 
Try it
Batch Create or Update Contact with the HubSpot API

Create or update a batch of contacts by its ID. See the documentation

 
Try it
Find Users By Email with the awork API

Finds a user by email. See docs here

 
Try it

Overview of awork

The awork API allows for automation and integration of project management features within awork, such as tasks, projects, time tracking, and team collaborations. By leveraging the awork API on Pipedream, you can create seamless workflows that connect project activities with other apps and services, streamline processes, and enhance productivity. With Pipedream, you can trigger actions based on specific events in awork or schedule periodic tasks that synchronize data across multiple platforms, all with minimal coding.

Connect awork

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    awork: {
      type: "app",
      app: "awork",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.awork.com/api/v1/me`,
      headers: {
        Authorization: `Bearer ${this.awork.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of HubSpot

The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.

Connect HubSpot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    hubspot: {
      type: "app",
      app: "hubspot",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.hubapi.com/integrations/v1/me`,
      headers: {
        Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
      },
    })
  },
})