Simple iMessage API ready for scale.
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 Bloom Growth API provides a suite of tools for business management and growth, focusing on customer relationships, project management, and data analysis. With Pipedream, you can leverage this API to create automated workflows that integrate Bloom Growth's functionalities with other apps, streamline processes, and enhance data-driven decision-making.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bloom_growth: {
type: "app",
app: "bloom_growth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.bloomgrowth.com/api/v1/users/mine`,
headers: {
Authorization: `Bearer ${this.bloom_growth.$auth.oauth_access_token}`,
"Accept": `application/json`,
},
})
},
})