Booqable integration
Booqable is a rental software platform that helps businesses manage inventory,…
- Provider
- booqable
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 49 available
Quick start
Call Booqable from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Booqable's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"BOOQABLE_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Booqable API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
49 actions exposed via the
Booqable integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
BOOQABLE_CREATE_CUSTOMER -
BOOQABLE_CREATE_ORDER -
BOOQABLE_CREATE_PRODUCT_GROUP -
BOOQABLE_DELETE_CUSTOMER -
BOOQABLE_DELETE_ORDER -
BOOQABLE_DELETE_PRODUCT_GROUP -
BOOQABLE_GET_CUSTOMER -
BOOQABLE_GET_CUSTOMERS -
BOOQABLE_GET_INVENTORY_LEVELS -
BOOQABLE_GET_NEW_ORDER -
BOOQABLE_GET_ORDER -
BOOQABLE_GET_PRODUCT
Show all 49 actions
-
BOOQABLE_GET_PRODUCT_GROUP -
BOOQABLE_LIST_BARCODES -
BOOQABLE_LIST_BUNDLE_ITEMS -
BOOQABLE_LIST_CLUSTERS -
BOOQABLE_LIST_COUPONS -
BOOQABLE_LIST_DEFAULT_PROPERTIES -
BOOQABLE_LIST_DOCUMENTS -
BOOQABLE_LIST_EMAIL_TEMPLATES -
BOOQABLE_LIST_EMPLOYEES -
BOOQABLE_LIST_INVENTORY_BREAKDOWNS -
BOOQABLE_LIST_ITEMS -
BOOQABLE_LIST_LINES -
BOOQABLE_LIST_LOCATIONS -
BOOQABLE_LIST_NOTES -
BOOQABLE_LIST_ORDERS -
BOOQABLE_LIST_PAYMENT_METHODS -
BOOQABLE_LIST_PAYMENTS -
BOOQABLE_LIST_PHOTOS -
BOOQABLE_LIST_PLANNINGS -
BOOQABLE_LIST_PRICE_RULESETS -
BOOQABLE_LIST_PRICE_STRUCTURES -
BOOQABLE_LIST_PRODUCT_GROUPS -
BOOQABLE_LIST_PRODUCTS -
BOOQABLE_LIST_PROPERTIES -
BOOQABLE_LIST_PROVINCES -
BOOQABLE_LIST_STOCK_ITEM_PLANNINGS -
BOOQABLE_LIST_STOCK_ITEMS -
BOOQABLE_LIST_TAX_RATES -
BOOQABLE_LIST_TAX_VALUES -
BOOQABLE_LIST_USERS -
BOOQABLE_SEARCH_BUNDLES -
BOOQABLE_SEARCH_CUSTOMERS -
BOOQABLE_SEARCH_DOCUMENTS -
BOOQABLE_SEARCH_ITEMS -
BOOQABLE_SEARCH_ORDERS -
BOOQABLE_SEARCH_PLANNINGS -
BOOQABLE_UPDATE_COMPANIES
Build with Booqable
Open OverSkill, describe what you want to build, and reference Booqable in your prompt — the AI will wire up the integration automatically.