with Cisco Meraki and CaptureKit?
Capture a high-quality image of any webpage. See the documentation
Extract structured data from any webpage, including metadata, links, and raw HTML. 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: {
capturekit: {
type: "app",
app: "capturekit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.capturekit.dev/capture`,
headers: {
"x-access-key": `${this.capturekit.$auth.access_key}`,
},
params: {
url: `https://pipedream.com`,
},
})
},
})