Onedesk integration
OneDesk is an all-in-one platform combining help desk and project management…
- Provider
- onedesk
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 24 available
Quick start
Call Onedesk from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Onedesk'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(
"ONEDESK_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 Onedesk 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
24 actions exposed via the
Onedesk integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
ONEDESK_CREATE_WORKLOG -
ONEDESK_DELETE_ATTACHMENT -
ONEDESK_DELETE_COMMENT -
ONEDESK_DELETE_CUSTOMER -
ONEDESK_DELETE_MESSAGE -
ONEDESK_DELETE_PROJECT -
ONEDESK_DELETE_REQUIREMENT -
ONEDESK_DELETE_TASK -
ONEDESK_DELETE_TICKET -
ONEDESK_DELETE_TIMESHEET -
ONEDESK_DELETE_USER -
ONEDESK_GET_ATTACHMENTS
Show all 24 actions
-
ONEDESK_GET_COMMENT_DETAILS -
ONEDESK_GET_COMMENTS -
ONEDESK_GET_FEEDBACK -
ONEDESK_GET_FEEDBACK_DETAILS -
ONEDESK_GET_ISSUE_DETAILS -
ONEDESK_GET_ISSUES -
ONEDESK_GET_MESSAGES -
ONEDESK_GET_REQUIREMENTS -
ONEDESK_GET_TASK_DETAILS -
ONEDESK_GET_TICKETS -
ONEDESK_GET_TIMESHEET_DETAILS -
ONEDESK_GET_WORKLOGS
Build with Onedesk
Open OverSkill, describe what you want to build, and reference Onedesk in your prompt — the AI will wire up the integration automatically.