Quentn is the first marketing operating system, with a portal for complete customer communication.
Emit new event when a campaign contact is sent. You should set up a webhook in the Quentn UI workflow builder to send a POST request to this source by drag and drop the API Send
element.
Emit new event when a new message is posted in a channel
Emit new event when a new message is received in a chat
Quentn is a marketing automation platform that enables users to streamline communication with their leads and customers. With the Quentn API on Pipedream, you can automate tasks like managing contacts, sending personalized emails, and triggering actions based on customer behaviors. It allows for a more targeted approach to marketing by engaging with your audience at critical points in the customer journey, all while saving time with automated workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
quentn: {
type: "app",
app: "quentn",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.quentn.$auth.system_id}.${this.quentn.$auth.server_id}.quentn.com/public/api/V1/terms`,
headers: {
Authorization: `Bearer ${this.quentn.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})