Backendless integration
Backendless is a comprehensive backend-as-a-service (BaaS) platform providing…
- Provider
- backendless
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 30 available
Quick start
Call Backendless from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Backendless'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(
"BACKENDLESS_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 Backendless 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
30 actions exposed via the
Backendless integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
BACKENDLESS_COPY_FILE -
BACKENDLESS_CREATE_DIRECTORY -
BACKENDLESS_CREATE_HIVE -
BACKENDLESS_CREATE_TIMER -
BACKENDLESS_DELETE_DIRECTORY -
BACKENDLESS_DELETE_FILE -
BACKENDLESS_DELETE_TIMER -
BACKENDLESS_DIRECTORY_LISTING -
BACKENDLESS_GENERAL_OBJECT_RETRIEVAL -
BACKENDLESS_GET_ALL_VALUES -
BACKENDLESS_GET_COUNTER_VALUE -
BACKENDLESS_GET_FILE_COUNT
Show all 30 actions
-
BACKENDLESS_GET_KEY_ITEMS -
BACKENDLESS_GET_TIMER -
BACKENDLESS_MAP_PUT -
BACKENDLESS_MOVE_FILE -
BACKENDLESS_PUBLISH_MESSAGE -
BACKENDLESS_RESET_COUNTER -
BACKENDLESS_SET_COUNTER_VALUE -
BACKENDLESS_UPDATE_TIMER -
BACKENDLESS_USER_DELETE -
BACKENDLESS_USER_FIND -
BACKENDLESS_USER_GRANT_PERMISSION -
BACKENDLESS_USER_LOGIN -
BACKENDLESS_USER_LOGOUT -
BACKENDLESS_USER_PASSWORD_RECOVERY -
BACKENDLESS_USER_REGISTRATION -
BACKENDLESS_USER_REVOKE_PERMISSION -
BACKENDLESS_USER_UPDATE -
BACKENDLESS_VALIDATE_USER_TOKEN
Build with Backendless
Open OverSkill, describe what you want to build, and reference Backendless in your prompt — the AI will wire up the integration automatically.