D2L Brightspace integration
D2L Brightspace is a learning management system that provides a comprehensive…
- Provider
- d2lbrightspace
- Category
- Other
- Setup
- Bring-your-own OAuth credentials
- Actions
- 45 available
Quick start
Call D2L Brightspace from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to D2L Brightspace'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(
"D2LBRIGHTSPACE_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 D2L Brightspace 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
45 actions exposed via the
D2L Brightspace integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
D2LBRIGHTSPACE_COPY_ROLE -
D2LBRIGHTSPACE_CREATE_A_COURSE_OFFERING -
D2LBRIGHTSPACE_CREATE_A_COURSE_TEMPLATE -
D2LBRIGHTSPACE_CREATE_GRADE_OBJECT -
D2LBRIGHTSPACE_CREATE_QUIZ -
D2LBRIGHTSPACE_CREATE_QUIZ_CATEGORY -
D2LBRIGHTSPACE_CREATE_USER -
D2LBRIGHTSPACE_DELETE_A_COURSE_TEMPLATE -
D2LBRIGHTSPACE_DELETE_COURSE -
D2LBRIGHTSPACE_DELETE_GRADE_OBJECT -
D2LBRIGHTSPACE_DELETE_QUIZ -
D2LBRIGHTSPACE_DELETE_QUIZ_CATEGORY
Show all 45 actions
-
D2LBRIGHTSPACE_DELETE_USER -
D2LBRIGHTSPACE_DELETE_USER_DEMOGRAPHICS -
D2LBRIGHTSPACE_GET_A_COURSE_OFFERING -
D2LBRIGHTSPACE_GET_A_COURSE_TEMPLATE -
D2LBRIGHTSPACE_GET_COURSE_SCHEMA -
D2LBRIGHTSPACE_GET_COURSE_TEMPLATE_SCHEMA -
D2LBRIGHTSPACE_GET_CURRENT_USER -
D2LBRIGHTSPACE_GET_ENROLLED_ROLES -
D2LBRIGHTSPACE_GET_GRADE_ACCESS -
D2LBRIGHTSPACE_GET_GRADE_OBJECT -
D2LBRIGHTSPACE_GET_GRADE_OBJECTS -
D2LBRIGHTSPACE_GET_GRADE_SETUP -
D2LBRIGHTSPACE_GET_GRADE_STATISTICS -
D2LBRIGHTSPACE_GET_ORG_UNIT_DEMOGRAPHICS -
D2LBRIGHTSPACE_GET_QUIZ -
D2LBRIGHTSPACE_GET_QUIZ_ACCESS -
D2LBRIGHTSPACE_GET_QUIZ_ATTEMPT -
D2LBRIGHTSPACE_GET_QUIZ_ATTEMPTS -
D2LBRIGHTSPACE_GET_QUIZ_CATEGORIES -
D2LBRIGHTSPACE_GET_QUIZ_CATEGORY -
D2LBRIGHTSPACE_GET_QUIZ_QUESTIONS -
D2LBRIGHTSPACE_GET_QUIZZES -
D2LBRIGHTSPACE_GET_ROLE_BY_ID -
D2LBRIGHTSPACE_GET_ROLES -
D2LBRIGHTSPACE_GET_USER_BY_ID -
D2LBRIGHTSPACE_GET_USERS -
D2LBRIGHTSPACE_UPDATE_A_COURSE_OFFERING -
D2LBRIGHTSPACE_UPDATE_A_COURSE_TEMPLATE -
D2LBRIGHTSPACE_UPDATE_GRADE_OBJECT -
D2LBRIGHTSPACE_UPDATE_GRADE_SETUP -
D2LBRIGHTSPACE_UPDATE_QUIZ -
D2LBRIGHTSPACE_UPDATE_QUIZ_CATEGORY -
D2LBRIGHTSPACE_UPDATE_USER
Build with D2L Brightspace
Open OverSkill, describe what you want to build, and reference D2L Brightspace in your prompt — the AI will wire up the integration automatically.