Sign in

Delete lesson content item

documented

Delete a content item from a lesson.

DELETE /v1/lessons/{lesson_id}/content-items/{content_item_id}Content Managementno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.skilljar.com/v1/lessons/{{$lesson_id}}/content-items/{{$content_item_id}}" \
  -X DELETE \
  -u "{{SKILLJAR_API_KEY}}:" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  # Sources: the Skilljar API uses base URL https://api.skilljar.com/v1 with HTTP Basic authentication where the API Key is the username \
  # See Getting started with the Skilljar API and Content Management API docs for details
Delete lesson content item · Skilljar · OpenIntegrations