with Cisco Meraki and Miyn?
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: {
miyn: {
type: "app",
app: "miyn",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://calendar.miyn.app/zapier.php`,
params: {
api_key: `${this.miyn.$auth.api_key}`,
},
})
},
})