We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49eae8d commit fd89b66Copy full SHA for fd89b66
1 file changed
lib/scorm_engine/api/endpoints/registrations.rb
@@ -163,8 +163,9 @@ def get_registration_progress(options = {})
163
registration_id = options.delete(:registration_id)
164
detail = !!options.delete(:detail)
165
166
- url = "registrations/#{registration_id}/progress"
167
- url += "/detail" if detail
+ # API v2 uses the base registration endpoint for both summary and detailed progress
+ # The v2 endpoint includes activity details by default
168
+ url = "registrations/#{registration_id}"
169
170
response = get(url, options)
171
0 commit comments