with Clio - EU and Zoho Tables?
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_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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_tables: {
type: "app",
app: "zoho_tables",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://tables.${this.zoho_tables.$auth.base_api_url}/api/v1/portals`,
headers: {
Authorization: `Bearer ${this.zoho_tables.$auth.oauth_access_token}`,
},
})
},
})