with Kudosity and File Store?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
kudosity: {
type: "app",
app: "kudosity",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.transmitsms.com/get-balance.json`,
auth: {
username: `${this.kudosity.$auth.api_key}`,
password: `${this.kudosity.$auth.api_secret}`,
},
})
},
})export default defineComponent({
async run({ steps, $ }) {
// list all contents of the root File Stores directory in this project
const dirs = $.files.dir();
let files = [];
for await(const dir of dirs) {
// if this is a file, let's open it
if(dir.isFile()) {
files.push(await $.files.open(dir.path))
}
}
return files
},
})