Sign in

Update lesson content item

documented

Update a content item for a lesson.

PUT /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 PUT \
  -u "{{SKILLJAR_API_KEY}}:" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "Authorization: Basic {{SKILLJAR_API_KEY}}:" \
  -d '{"type": "{{$type}}", "title": "{{$title}}", "description": "{{$description}}", "asset_id": "{{$asset_id}}", "url": "{{$url}}", "duration": "{{$duration}}", "order": {{$order}} }'