Skip to main content
https://.thoughtindustries.com

Extract

List scormAttempt

List scormAttempt

GEThttps://example.thoughtindustries.com/incoming/v2/events/scormAttempt

Returns a paginated list of SCORM attempt events. Filter results by user, notifiable resource, or date range.

Example request

curl "https://example.thoughtindustries.com/incoming/v2/events/scormAttempt" \
  -H 'Authorization: Bearer YOUR_API_KEY'

Parameters

NameTypeRequiredLocationDescription
kindstringNoqueryFilters events by kind subtype.
cursorstringNoqueryPagination cursor returned from a previous response; pass this value to retrieve the next page of results.
startDateISO 8601 timestampNoqueryReturns only events that occurred on or after this ISO 8601 timestamp.
endDateISO 8601 timestampNoqueryReturns only events that occurred on or before this ISO 8601 timestamp.
notifiableIduuidNoqueryFilters events to those associated with the specified notifiable resource UUID.
userIduuidNoqueryFilters events to those belonging to the specified user UUID.

Example response

{
  "data": {
    "APIEvents": {
      "pageInfo": {
        "perPage": 0,
        "cursor": "string",
        "total": 0,
        "hasMore": true
      },
      "events": [
        {}
      ]
    }
  }
}

Response fields

FieldTypeDescription
pageInfoCursorPageInfoPagination metadata for the current result set.
pageInfo.perPageintegerNumber of events returned per page.
pageInfo.cursorstringOpaque cursor value to pass as the cursor parameter to retrieve the next page.
pageInfo.totalintegerTotal number of events matching the query.
pageInfo.hasMorebooleanIndicates whether additional pages of results are available.
eventsobject[]Array of SCORM attempt event objects matching the query.