Teamioo

Intuitive Teamwork. Connect the right people and empower your team and projects with productive superpowers.

Integrate the Teamioo API with the Salesforce (REST API) API

Setup the Teamioo API trigger to run a workflow which integrates with the Salesforce (REST API) API. Pipedream's integration platform allows you to integrate Teamioo and Salesforce (REST API) remarkably fast. Free for developers.

Add Contact to Campaign with Salesforce (REST API) API on New Contact Added from Teamioo API
Teamioo + Salesforce (REST API)
 
Try it
Add Contact to Campaign with Salesforce (REST API) API on New Group Bookmark URL from Teamioo API
Teamioo + Salesforce (REST API)
 
Try it
Add Contact to Campaign with Salesforce (REST API) API on New Group Member from Teamioo API
Teamioo + Salesforce (REST API)
 
Try it
Add Lead to Campaign with Salesforce (REST API) API on New Contact Added from Teamioo API
Teamioo + Salesforce (REST API)
 
Try it
Add Lead to Campaign with Salesforce (REST API) API on New Group Bookmark URL from Teamioo API
Teamioo + Salesforce (REST API)
 
Try it
New Contact Added from the Teamioo API

Emit new event when a new contact (client) is added.

 
Try it
New Group Bookmark URL from the Teamioo API

Emit new event when a new URL is bookmarked in a group.

 
Try it
New Group Member from the Teamioo API

Emit new event when a new member is added.

 
Try it
New Deleted Record (Instant, of Selectable Type) from the Salesforce (REST API) API

Emit new event immediately after a record of arbitrary object type (selected as an input parameter by the user) is deleted

 
Try it
New Deleted Record (of Selectable Type) from the Salesforce (REST API) API

Emit new event (at regular intervals) when a record of arbitrary object type (selected as an input parameter by the user) is deleted. See the docs for more information.

 
Try it
Create Bookmark with the Teamioo API

Saves a website URL to the bookmarks. The 'url' and 'bookmark_type' are required. 'bookmark_type' can either be 'personal' or 'group'. An optional prop 'title' can be included to give the bookmark a custom name. See the documentation

 
Try it
Add Contact to Campaign with the Salesforce (REST API) API

Adds an existing contact to an existing campaign. See Event SObject and Create Record

 
Try it
Create Calendar Event with the Teamioo API

Creates a new calendar event. See the documentation

 
Try it
Add Lead to Campaign with the Salesforce (REST API) API

Adds an existing lead to an existing campaign. See Event SObject and Create Record

 
Try it
Create Task with the Teamioo API

Creates a new task in Teamioo. See the documentation

 
Try it

Overview of Teamioo

The Teamioo API provides a suite of tools to manage teamwork and project progression. With this API, you can automate your workflow, synchronize data across various platforms, and streamline project management tasks. On Pipedream, you can integrate Teamioo with other apps to create multi-step workflows, perform operations based on triggers, and manipulate data to fit your project management needs.

Connect Teamioo

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: {
    teamioo: {
      type: "app",
      app: "teamioo",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.teamioo.$auth.environment}.teamioo.com/_api/groups`,
      params: {
        teamiooAPIKey: `${this.teamioo.$auth.api_key}`,
      },
    })
  },
})

Overview of Salesforce (REST API)

The Salesforce (REST API) provides a powerful platform for creating and managing customer relationships with a wide array of features like data manipulation, querying, and complex automation. With Pipedream's serverless execution, you can create workflows that automate your sales processes, sync data with other platforms, enhance customer engagement, and trigger actions based on specific events. Dive into Salesforce data, streamline lead management, track customer interactions, and push or pull data to or from Salesforce seamlessly.

Connect Salesforce (REST API)

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: {
    salesforce_rest_api: {
      type: "app",
      app: "salesforce_rest_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.salesforce_rest_api.$auth.instancetype}/services/oauth2/userinfo`,
      headers: {
        Authorization: `Bearer ${this.salesforce_rest_api.$auth.oauth_access_token}`,
      },
    })
  },
})