with Instantly and Trengo?
Emit new event when a new background job has completed. See the documentation
Emit new event when a new email is received. See the documentation
Emit new event when a new lead is created. See the documentation
Emit new events when an inbound message received. See the docs here
Emit new events when a internal note added. See the docs here
Adds a lead or leads to a campaign for tracking or further actions. See the documentation
Creates a contact. If a contact with given identifier already exists, returns it. See the docs
List articles from a help center according to the specified criteria. See the docs
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
instantly: {
type: "app",
app: "instantly",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.instantly.ai/api/v2/accounts`,
headers: {
Authorization: `Bearer ${this.instantly.$auth.api_key}`,
},
})
},
})
The Trengo API provides programmatic access to Trengo's multi-channel communication platform, allowing for the streamlining of customer interactions across various channels such as email, SMS, social media, and chat. By leveraging the Trengo API on Pipedream, you can automate customer support workflows, sync communication data with CRM systems, and trigger alerts or actions based on specific customer queries or events.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
trengo: {
type: "app",
app: "trengo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.trengo.eu/api/v2/users`,
headers: {
Authorization: `Bearer ${this.trengo.$auth.access_token}`,
},
})
},
})