Egnyte integration
Egnyte is a cloud-based content collaboration platform that enables secure file…
- Provider
- egnyte
- Category
- Other
- Setup
- Bring-your-own OAuth credentials
- Actions
- 60 available
Quick start
Call Egnyte from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Egnyte'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(
"EGNYTE_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
This integration uses OAuth, but the platform credentials for Egnyte haven't been registered yet. Reach out to the OverSkill team so we can register the OAuth client_id / client_secret — until then the "Connect" button won't work.
Available actions
60 actions exposed via the
Egnyte integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
EGNYTE_CREATE_AUDIT_PERMISSIONS -
EGNYTE_CREATE_AUDIT_USERS -
EGNYTE_CREATE_BOOKMARK -
EGNYTE_CREATE_COMMENT -
EGNYTE_CREATE_FILE_AUDIT_REPORT -
EGNYTE_CREATE_GROUP -
EGNYTE_CREATE_LINK -
EGNYTE_CREATE_LOGIN_AUDIT_REPORT -
EGNYTE_CREATE_USER -
EGNYTE_DELETE_AUDIT_REPORT -
EGNYTE_DELETE_BOOKMARK -
EGNYTE_DELETE_FILE_BY_ID
Show all 60 actions
-
EGNYTE_DELETE_FILE_OR_FOLDER -
EGNYTE_DELETE_GROUP -
EGNYTE_DELETE_LINK -
EGNYTE_DELETE_METADATA_KEY -
EGNYTE_DELETE_METADATA_NAMESPACE -
EGNYTE_DELETE_NOTE -
EGNYTE_DELETE_USER -
EGNYTE_DOWNLOAD_FILE -
EGNYTE_DOWNLOAD_FILE_BY_ID -
EGNYTE_GET_AUDIT -
EGNYTE_GET_AUDIT_JOB -
EGNYTE_GET_AUDIT_STREAM -
EGNYTE_GET_BOOKMARK -
EGNYTE_GET_EVENTS_CURSOR -
EGNYTE_GET_EVENTS_V2 -
EGNYTE_GET_FILE_BY_ID -
EGNYTE_GET_FILE_METADATA -
EGNYTE_GET_FILE_METADATA_VALUES -
EGNYTE_GET_FOLDER_BY_ID -
EGNYTE_GET_FS_STATS -
EGNYTE_GET_GROUP -
EGNYTE_GET_LINK -
EGNYTE_GET_LINK_SETTINGS -
EGNYTE_GET_PERMISSIONS -
EGNYTE_GET_USER -
EGNYTE_GET_USERINFO -
EGNYTE_LIST_BOOKMARKS -
EGNYTE_LIST_COMMENTS -
EGNYTE_LIST_GROUPS -
EGNYTE_LIST_INSIGHTS_FILES -
EGNYTE_LIST_LINKS_V2 -
EGNYTE_LIST_METADATA_NAMESPACES -
EGNYTE_LIST_USERS -
EGNYTE_LIST_WORKFLOWS -
EGNYTE_LIST_WORKFLOWS_TASKS -
EGNYTE_LOCK_FILE -
EGNYTE_REPLACE_GROUP -
EGNYTE_SEARCH_V2 -
EGNYTE_SET_FILE_METADATA_VALUES -
EGNYTE_SET_FOLDER_METADATA_VALUES -
EGNYTE_SET_PERMISSIONS -
EGNYTE_STREAM_AUDIT_EVENTS -
EGNYTE_UPDATE_FOLDER_OPTIONS -
EGNYTE_UPDATE_GROUP -
EGNYTE_UPDATE_METADATA_KEY -
EGNYTE_UPDATE_METADATA_NAMESPACE -
EGNYTE_UPDATE_USER -
EGNYTE_UPLOAD_FILE
Build with Egnyte
Open OverSkill, describe what you want to build, and reference Egnyte in your prompt — the AI will wire up the integration automatically.