Booqable is the rental software of choice for many of the world's leading rental businesses, providing a modern solution to streamline operations and deliver seamless customer experiences, online and in-store.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
booqable: {
type: "app",
app: "booqable",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.booqable.$auth.company_slug}.booqable.com/api/1/customers`,
params: {
api_key: `${this.booqable.$auth.api_key}`,
page: `1`,
per: `1`,
},
})
},
})
Booqable uses API keys for authentication. When you connect your Booqable account, Pipedream securely stores the keys so you can easily authenticate to Booqable APIs in both code and no-code steps.
To get your Booqable API key, navigate to your account settings: https://{your_company_slug}.booqable.com/settings/account
To get there, sign in to your Booqable account and click "User settings" at the bottom-left of the screen.
Once there, enter a description and click Create API key.