BulkImportCourseWebinar
Returns a paginated list of bulk import course webinar logs
Returns a paginated list of bulk import course webinar logs.
GET
https://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
| Name | Type | Required | Location | Description |
|---|---|---|---|---|
cursor | string | No | query | Opaque pagination cursor returned by a previous response; use to fetch the next page of results. |
perPage | integer | No | query | Number 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
| Field | Type | Description |
|---|---|---|
data | object[] | Array of bulk import course webinar log entries. |
pageInfo | CursorPageInfo | Pagination metadata for the current result set. |
pageInfo.cursor | string | Opaque cursor value to pass in the next request to retrieve the following page of results. |
pageInfo.hasMore | boolean | Indicates whether additional pages of results are available. |