Classmarker integration
ClassMarker is a professional, flexible, and easy-to-use online quiz maker for…
- Provider
- classmarker
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 28 available
Quick start
Call Classmarker from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Classmarker'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(
"CLASSMARKER_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 Classmarker 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
28 actions exposed via the
Classmarker integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
CLASSMARKER_CREATE_ACCESS_LIST_ITEM -
CLASSMARKER_CREATE_CATEGORY -
CLASSMARKER_CREATE_GROUP -
CLASSMARKER_CREATE_QUESTION -
CLASSMARKER_CREATE_USER -
CLASSMARKER_DELETE_ACCESS_LIST_ITEM -
CLASSMARKER_DELETE_API_KEY -
CLASSMARKER_DELETE_GROUP -
CLASSMARKER_DELETE_TEST_LINK -
CLASSMARKER_DELETE_USER -
CLASSMARKER_DELETE_WEBHOOK -
CLASSMARKER_GET_GROUP_DETAILS
Show all 28 actions
-
CLASSMARKER_GET_INITIAL_FINISHED_AFTER_TIMESTAMP -
CLASSMARKER_GET_QUESTION -
CLASSMARKER_GET_RECENT_RESULTS_GROUP_EXAM -
CLASSMARKER_GET_RECENT_RESULTS_LINK_EXAM -
CLASSMARKER_GET_TEST_DETAILS -
CLASSMARKER_GET_USER_DETAILS -
CLASSMARKER_LIST_CATEGORIES -
CLASSMARKER_LIST_CERTIFICATES -
CLASSMARKER_LIST_QUESTIONS -
CLASSMARKER_LIST_RECENT_RESULTS_FOR_GROUPS -
CLASSMARKER_LIST_RECENT_RESULTS_FOR_LINKS -
CLASSMARKER_LIST_USERS -
CLASSMARKER_LIST_WEBHOOKS -
CLASSMARKER_PUT_CATEGORY -
CLASSMARKER_PUT_PARENT_CATEGORY -
CLASSMARKER_PUT_QUESTION
Build with Classmarker
Open OverSkill, describe what you want to build, and reference Classmarker in your prompt — the AI will wire up the integration automatically.