import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
proovl: {
type: "app",
app: "proovl",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.proovl.com/api/balance.php`,
params: {
user: `${this.proovl.$auth.user_id}`,
token: `${this.proovl.$auth.api_token}`,
},
})
},
})
Proovl uses API keys for authentication. When you connect your Proovl account, Pipedream securely stores the keys so you can easily authenticate to Proovl APIs in both code and no-code steps.