with Clio - Canada and Rafflys?
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
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
clio_canada: {
type: "app",
app: "clio_canada",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://ca.app.clio.com/api/v4/users/who_am_i`,
headers: {
Authorization: `Bearer ${this.clio_canada.$auth.oauth_access_token}`,
},
})
},
})
Rafflys API provides tools to create and manage online raffles and contests, paving the way for engagement and promotional activities. Within Pipedream, you can leverage this API to build automations that enhance the way you run contests, connect with your audience, and analyze engagement data. By integrating Rafflys with other apps on Pipedream, you can craft workflows that streamline contest operations, notify winners, or even sync data with marketing platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rafflys: {
type: "app",
app: "rafflys",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app-sorteos.com/api/v2/users/me`,
headers: {
"X-API-KEY": `${this.rafflys.$auth.api_key}`,
},
})
},
})