Nozbe Teams integration
Cloud-based task management tool helping individuals and teams get organized.
- Provider
- nozbe_teams
- Category
- Productivity
- Setup
- User-supplied API key
- Actions
- 48 available
Quick start
Call Nozbe Teams from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Nozbe Teams'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(
"NOZBE_TEAMS_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 Nozbe Teams 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
48 actions exposed via the
Nozbe Teams integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
NOZBE_TEAMS_CREATE_ATTACHMENT -
NOZBE_TEAMS_CREATE_COMMENT -
NOZBE_TEAMS_CREATE_PROJECT_SECTION -
NOZBE_TEAMS_CREATE_REMINDER -
NOZBE_TEAMS_CREATE_TAG_ASSIGNMENT -
NOZBE_TEAMS_CREATE_TASK -
NOZBE_TEAMS_CREATE_TEAM_MEMBER -
NOZBE_TEAMS_CREATE_USER -
NOZBE_TEAMS_DELETE_COMMENT -
NOZBE_TEAMS_DELETE_PROJECT -
NOZBE_TEAMS_DELETE_REMINDER -
NOZBE_TEAMS_DELETE_TAG_ASSIGNMENT
Show all 48 actions
-
NOZBE_TEAMS_DELETE_TASK -
NOZBE_TEAMS_GET_ATTACHMENT -
NOZBE_TEAMS_GET_COMMENT -
NOZBE_TEAMS_GET_PROJECT -
NOZBE_TEAMS_GET_PROJECT_ACCESS -
NOZBE_TEAMS_GET_PROJECT_SECTION -
NOZBE_TEAMS_GET_REMINDER -
NOZBE_TEAMS_GET_TAG -
NOZBE_TEAMS_GET_TAG_ASSIGNMENT -
NOZBE_TEAMS_GET_TASK -
NOZBE_TEAMS_GET_TASK_EVENT -
NOZBE_TEAMS_GET_TEAM -
NOZBE_TEAMS_GET_TEAM_MEMBER -
NOZBE_TEAMS_GET_USER -
NOZBE_TEAMS_LIST_ATTACHMENTS -
NOZBE_TEAMS_LIST_COMMENTS -
NOZBE_TEAMS_LIST_GROUP_ASSIGNMENTS -
NOZBE_TEAMS_LIST_PROJECT_ACCESSES -
NOZBE_TEAMS_LIST_PROJECT_GROUPS -
NOZBE_TEAMS_LIST_PROJECTS -
NOZBE_TEAMS_LIST_PROJECT_SECTIONS -
NOZBE_TEAMS_LIST_REMINDERS -
NOZBE_TEAMS_LIST_TAG_ASSIGNMENTS -
NOZBE_TEAMS_LIST_TAGS -
NOZBE_TEAMS_LIST_TASK_EVENTS -
NOZBE_TEAMS_LIST_TASKS -
NOZBE_TEAMS_LIST_USERS -
NOZBE_TEAMS_POLL_NEW_TASKS -
NOZBE_TEAMS_POLL_UPDATED_TASKS -
NOZBE_TEAMS_UPDATE_COMMENT -
NOZBE_TEAMS_UPDATE_PROJECT -
NOZBE_TEAMS_UPDATE_PROJECT_ACCESS -
NOZBE_TEAMS_UPDATE_TASK -
NOZBE_TEAMS_UPDATE_TEAM -
NOZBE_TEAMS_UPDATE_TEAM_MEMBER -
NOZBE_TEAMS_UPDATE_USER
Build with Nozbe Teams
Open OverSkill, describe what you want to build, and reference Nozbe Teams in your prompt — the AI will wire up the integration automatically.