with ImageKit.io and HeyReach?
List all the uploaded files and folders in your ImageKit.io media library. See the documentation
ImageKit.io API lets you manage, optimize, and deliver images dynamically for your web applications. On Pipedream, you can integrate this API to construct serverless workflows that automate your image operations and connect with other services. You can upload images from various sources, apply real-time transformations, and track media assets without managing infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
imagekit_io: {
type: "app",
app: "imagekit_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.imagekit.io/v1/files`,
auth: {
username: `${this.imagekit_io.$auth.private_key}`,
password: ``,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
heyreach: {
type: "app",
app: "heyreach",
}
},
async run({steps, $}) {
const data = {
"offset": `0`,
"keyword": `your_account_name`,
"limit": `10`,
}
return await axios($, {
method: "post",
url: `https://api.heyreach.io/api/public/li_account/GetAll`,
headers: {
"x-api-key": `${this.heyreach.$auth.api_key}`,
},
data,
})
},
})