Connecteam integration
Connecteam is a comprehensive workforce management platform designed to…
- Provider
- connecteam
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 16 available
Quick start
Call Connecteam from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Connecteam'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(
"CONNECTEAM_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 Connecteam 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
16 actions exposed via the
Connecteam integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
CONNECTEAM_ARCHIVE_USERS -
CONNECTEAM_CREATE_USERS -
CONNECTEAM_GENERATE_UPLOAD_URL -
CONNECTEAM_GET_CHAT -
CONNECTEAM_GET_CUSTOM_FIELD_CATEGORIES -
CONNECTEAM_GET_CUSTOM_FIELDS -
CONNECTEAM_GET_FORMS -
CONNECTEAM_GET_JOBS -
CONNECTEAM_GET_PERFORMANCE_INDICATORS -
CONNECTEAM_GET_POLICY_TYPES -
CONNECTEAM_GET_PUBLISHERS -
CONNECTEAM_GET_SCHEDULERS
Show all 16 actions
-
CONNECTEAM_GET_SMART_GROUPS -
CONNECTEAM_GET_TASK_BOARDS -
CONNECTEAM_GET_USERS -
CONNECTEAM_LIST_ME
Build with Connecteam
Open OverSkill, describe what you want to build, and reference Connecteam in your prompt — the AI will wire up the integration automatically.