Azure DevOps

Plan smarter, collaborate better, and ship faster with a set of modern dev services

Integrate the Azure DevOps API with the Project Broadcast API

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

Broadcast Message with Project Broadcast API on New Event (Instant) from Azure DevOps API
Azure DevOps + Project Broadcast
 
Try it
Add Keyword To Contact with Project Broadcast API on New Event (Instant) from Azure DevOps API
Azure DevOps + Project Broadcast
 
Try it
Create Contact with Project Broadcast API on New Event (Instant) from Azure DevOps API
Azure DevOps + Project Broadcast
 
Try it
New Event (Instant) from the Azure DevOps API

Emit new event for the specified event type.

 
Try it
Add Keyword To Contact with the Project Broadcast API

Add a keyword to a contact. See the documentation

 
Try it
Broadcast Message with the Project Broadcast API

Sends a broadcast message to a list of contacts. See the documentation

 
Try it
Create Contact with the Project Broadcast API

Create a new contact. See the documentation

 
Try it

Overview of Azure DevOps

The Azure DevOps API opens up a world of possibilities for automating and enhancing your software development workflows. Through Pipedream, you can leverage this API to create custom integrations and serverless workflows that interact with your Azure DevOps projects. Automate tasks such as triggering builds, managing work items, updating repositories, and orchestrating multi-step processes that connect Azure DevOps with other services.

Connect Azure DevOps

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    azure_devops: {
      type: "app",
      app: "azure_devops",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.vssps.visualstudio.com/_apis/profile/profiles/Me`,
      headers: {
        Authorization: `Bearer ${this.azure_devops.$auth.oauth_access_token}`,
      },
      params: {
        "api-version": `5.0`,
      },
    })
  },
})

Overview of Project Broadcast

The Project Broadcast API facilitates communication through automated text messaging, providing features to manage contacts, send messages, and track campaigns. Leveraging this API on Pipedream allows you to create intricate workflows that can automate your texting campaigns, sync contact lists, and engage with customers by integrating with numerous other services for CRM, marketing, and other functions. With Pipedream's serverless platform, these integrations become seamless, triggering actions in real-time or on a schedule without the need for complex infrastructure.

Connect Project Broadcast

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: {
    project_broadcast: {
      type: "app",
      app: "project_broadcast",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.projectbroadcast.com/api/campaigns`,
      headers: {
        "x-api-key": `${this.project_broadcast.$auth.api_key}`,
      },
    })
  },
})