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

BulkImportCourseWebinar

Returns a paginated list of bulk import course webinar logs

Returns a paginated list of bulk import course webinar logs.

GEThttps://example.thoughtindustries.com/incoming/v2/logs/bulkImportCourseWebinar

:::note Other valid /v2/logs/:type values not documented as separate pages here include email, rusticiPostback, campaign, bulkImportCoupon, and zoom. :::

Example request

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

Parameters

NameTypeRequiredLocationDescription
cursorstringNoqueryOpaque pagination cursor returned by a previous response; use to fetch the next page of results.
perPageintegerNoqueryNumber of log entries to return per page. Defaults to 50; must be greater than 2.

Example response

{
  "data": [
    {}
  ],
  "pageInfo": {
    "cursor": "string",
    "hasMore": true
  }
}

Response fields

FieldTypeDescription
dataobject[]Array of bulk import course webinar log entries.
pageInfoCursorPageInfoPagination metadata for the current result set.
pageInfo.cursorstringOpaque cursor value to pass in the next request to retrieve the following page of results.
pageInfo.hasMorebooleanIndicates whether additional pages of results are available.