Australia's Most Reliable Email & SMS Marketing Software. Sign Up for a Free Trial Today!
Create a new channel in Microsoft Teams. See the docs here
Get the list of shift instances for a team. See the documentation
The Vision6 API offers a powerful way to automate email marketing and audience engagement directly through Pipedream. With it, you can programmatically manage lists, contacts, and messages, and also track campaign performance. This API provides granular control over email workflows, enabling custom triggers, targeted actions, and detailed analytics retrieval. The combination of Vision6 with Pipedream's serverless platform unlocks endless possibilities for syncing data, personalizing communication, and optimizing marketing strategies without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vision6: {
type: "app",
app: "vision6",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.vision6.$auth.region}.api.vision6.com/v1/lists`,
headers: {
Authorization: `Bearer ${this.vision6.$auth.api_key}`,
"Content-Type": `application/json; charset=UTF-8`,
},
})
},
})
The Microsoft Teams API on Pipedream allows you to automate tasks, streamline communication, and integrate with other services to enhance the functionality of Teams as a collaboration hub. With this API, you can send messages to channels, orchestrate complex workflows based on Teams events, and manage Teams' settings programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_teams: {
type: "app",
app: "microsoft_teams",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_teams.$auth.oauth_access_token}`,
},
})
},
})