With Flexie, you can easily create responsive, fluid layouts without having to worry about media queries or pixel measurements. You can also create complex animations and interactions using just a few lines of code.
Here are some examples of what you can build with Flexie:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
flexie: {
type: "app",
app: "flexie",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.flexie.$auth.subdomain}.flexie.io/api/users/self`,
params: {
apikey: `${this.flexie.$auth.api_key}`,
},
})
},
})
Flexie uses API keys for authentication. When you connect your Flexie account, Pipedream securely stores the keys so you can easily authenticate to Flexie APIs in both code and no-code steps.
Your API URL is your subdomain + /api/ + your endpoint. Find your API key under your account (Top-Right menu under your name), then on the API Settings sub-section. See docs.