Boost Your Team's Efficiency and Superpowers with AI! Transform your business and workflows from ordinary to extraordinary.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
flipando: {
type: "app",
app: "flipando",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://flipando-backend.herokuapp.com/api/v2/integrations/applications?max_results=5`,
headers: {
Authorization: `Bearer ${this.flipando.$auth.api_key}`,
},
})
},
})
Fetches a list of all apps that the user had created within flipando. See the documentation
Fetches data related to a specific task that is currently executed or had been executed previously. See the documentation
Executes a chosen app within Flipando. Returns a 'task_id' to be used in fetching the outcome of this action. [See the documentation](See the documentation)
Flipando uses API keys for authentication. When you connect your Flipando account, Pipedream securely stores the keys so you can easily authenticate to Flipando APIs in both code and no-code steps.