Simple iMessage API ready for scale.
Emit new event when a new message is posted in a channel
Emit new event when a new message is received in a chat
Emit new event when a new team is joined by the authenticated user
Create a new channel in Microsoft Teams. See the docs here
Get the list of shift instances for a team. See the documentation
Send a message to a team's channel. See the docs here
Sendblue API offers a powerful gateway to automate communication via iMessage, enabling businesses to send and receive messages programmatically. By leveraging Sendblue on Pipedream, you can create intricate workflows that respond to events in real-time, tailor customer interactions, and streamline notifications. It provides a unique opportunity to enhance customer engagement through one of the most widely used messaging platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendblue: {
type: "app",
app: "sendblue",
}
},
async run({steps, $}) {
const data = {
"number": `+19998887777`,
"content": `Hello world`,
"send_style": `Invisible`,
"media_url": `https://source.unsplash.com/random.png`,
"statusCallback": `https://example.com/message-status/1234abcd`,
}
return await axios($, {
method: "post",
url: `https://api.sendblue.co/api/send-message`,
headers: {
"sb-api-key-id": `${this.sendblue.$auth.api_key}`,
"sb-api-secret-key": `${this.sendblue.$auth.api_secret}`,
"Content-Type": `application/json`,
},
data,
})
},
})
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}`,
},
})
},
})