with Mailify and Clio - EU?
Emit new event when the state of a bill has changed in Clio. See the documentation
Emit new event when a new activity is created in Clio. See the documentation
Emit new event when a new document is created. See the documentation
Mailify API enables you to harness the power of email marketing by automating your email campaigns, managing contacts, analyzing results, and integrating with other services. With Pipedream, you can create complex workflows connecting Mailify with various apps to respond to events and triggers, thereby streamlining your marketing efforts and saving time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailify: {
type: "app",
app: "mailify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://mailifyapis.com/v1/users`,
auth: {
username: `${this.mailify.$auth.account_number}`,
password: `${this.mailify.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
clio_eu: {
type: "app",
app: "clio_eu",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://eu.app.clio.com/api/v4/users/who_am_i`,
headers: {
Authorization: `Bearer ${this.clio_eu.$auth.oauth_access_token}`,
},
})
},
})