with Cisco Meraki and Clio - Australia?
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
The Cisco Meraki API on Pipedream allows developers to interact with Meraki's cloud-managed network infrastructure. Through the API, you can automate tasks, gather network insights, and control various aspects of your Meraki environment like network settings, clients, devices, and more. This seamless integration can elevate your network management to be more efficient and responsive to real-time data and events.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cisco_meraki: {
type: "app",
app: "cisco_meraki",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.meraki.com/api/v1/organizations`,
headers: {
"X-Cisco-Meraki-API-Key": `${this.cisco_meraki.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
clio_australia: {
type: "app",
app: "clio_australia",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://au.app.clio.com/api/v4/users/who_am_i`,
headers: {
Authorization: `Bearer ${this.clio_australia.$auth.oauth_access_token}`,
},
})
},
})