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

Sso

Returns a paginated list of SSO log entries

Returns a paginated list of SSO log entries.

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

:::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/sso" \
  -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 SSO log entry objects matching the requested type.
pageInfoCursorPageInfoPagination metadata for the current result set.
pageInfo.cursorstringOpaque cursor value to pass in the next request to retrieve the subsequent page.
pageInfo.hasMorebooleanIndicates whether additional pages of results are available.