Customer service software
Emit new events when an inbound message received. See the docs here
Emit new events when a internal note added. See the docs here
Emit new events when an outbound message sent. See the docs here
Emit new events when an phone call ended. See the docs here
Emit new events when an phone call missed. See the docs here
Creates a contact. If a contact with given identifier already exists, returns it. See the docs
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
This action can be used to easily send a message or an email without having to think about contacts or tickets, See the docs
You can build amazing customer service experiences by using the Trengo API.
It's the platform to help teams work better together, and offers features to
optimize your customer conversation. For example, you can use Trengo to:
These are just some of the examples of what you can do with the Trengo API.
With the Trengo platform, you can make sure your customer conversations deliver
the best possible outcomes, consistently.
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}`,
},
})
},
})
Python API on Pipedream offers developers to build or automate a variety of
tasks from their web and cloud apps. With the Python API, users are able to
create comprehensive and flexible scripts, compose and manage environment
variables, and configure resources to perform a range of functions.
By using Pipedream, you can easily:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}