Loyverse integration
Loyverse is a point-of-sale (POS) system designed for small businesses,…
- Provider
- loyverse
- Category
- Ecommerce
- Setup
- User-supplied API key
- Actions
- 58 available
Quick start
Call Loyverse from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Loyverse'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(
"LOYVERSE_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 Loyverse 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
58 actions exposed via the
Loyverse integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
LOYVERSE_CREATE_OR_UPDATE_CATEGORY -
LOYVERSE_CREATE_OR_UPDATE_CUSTOMER -
LOYVERSE_CREATE_OR_UPDATE_DISCOUNT -
LOYVERSE_CREATE_OR_UPDATE_ITEM -
LOYVERSE_CREATE_OR_UPDATE_MODIFIER -
LOYVERSE_CREATE_OR_UPDATE_POS_DEVICE -
LOYVERSE_CREATE_OR_UPDATE_SUPPLIER -
LOYVERSE_CREATE_OR_UPDATE_TAX -
LOYVERSE_CREATE_OR_UPDATE_VARIANT -
LOYVERSE_CREATE_OR_UPDATE_WEBHOOK -
LOYVERSE_CREATE_RECEIPT -
LOYVERSE_CREATE_REFUND
Show all 58 actions
-
LOYVERSE_DELETE_CATEGORY -
LOYVERSE_DELETE_CUSTOMER -
LOYVERSE_DELETE_DISCOUNT -
LOYVERSE_DELETE_ITEM -
LOYVERSE_DELETE_ITEM_IMAGE -
LOYVERSE_DELETE_MODIFIER -
LOYVERSE_DELETE_POS_DEVICE -
LOYVERSE_DELETE_SUPPLIER -
LOYVERSE_DELETE_TAX -
LOYVERSE_DELETE_VARIANT -
LOYVERSE_DELETE_WEBHOOK -
LOYVERSE_GET_CATEGORY -
LOYVERSE_GET_CUSTOMER -
LOYVERSE_GET_DISCOUNT -
LOYVERSE_GET_EMPLOYEE -
LOYVERSE_GET_ITEM -
LOYVERSE_GET_JWKS -
LOYVERSE_GET_MERCHANT_INFO -
LOYVERSE_GET_MODIFIER -
LOYVERSE_GET_OPEN_ID_CONFIGURATION -
LOYVERSE_GET_PAYMENT_TYPE -
LOYVERSE_GET_POS_DEVICE -
LOYVERSE_GET_RECEIPT -
LOYVERSE_GET_STORE -
LOYVERSE_GET_SUPPLIER -
LOYVERSE_GET_TAX -
LOYVERSE_GET_VARIANT -
LOYVERSE_GET_WEBHOOK -
LOYVERSE_LIST_CATEGORIES -
LOYVERSE_LIST_CUSTOMERS -
LOYVERSE_LIST_DISCOUNTS -
LOYVERSE_LIST_EMPLOYEES2 -
LOYVERSE_LIST_INVENTORY -
LOYVERSE_LIST_ITEMS -
LOYVERSE_LIST_MODIFIERS2 -
LOYVERSE_LIST_PAYMENT_TYPES -
LOYVERSE_LIST_POS_DEVICES -
LOYVERSE_LIST_RECEIPTS -
LOYVERSE_LIST_SHIFTS -
LOYVERSE_LIST_STORES -
LOYVERSE_LIST_SUPPLIERS -
LOYVERSE_LIST_TAXES2 -
LOYVERSE_LIST_VARIANTS2 -
LOYVERSE_LIST_WEBHOOKS -
LOYVERSE_UPDATE_INVENTORY -
LOYVERSE_UPLOAD_ITEM_IMAGE
Build with Loyverse
Open OverSkill, describe what you want to build, and reference Loyverse in your prompt — the AI will wire up the integration automatically.