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

Example request

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

Parameters

NameTypeRequiredLocationDescription
typestringYesqueryThe SSO log type to filter results by.
cursorISO 8601 timestampNoqueryISO 8601 timestamp used as the pagination cursor to fetch the next page of results.
perPageintegerNoqueryNumber of log entries to return per page.

Example response

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

Response fields

FieldTypeDescription
dataobject[]Array of SSO log entry objects matching the requested type.
pageInfoCursorPageInfoPagination metadata for the current result set.
pageInfo.perPageintegerNumber of results returned per page.
pageInfo.cursorstringISO 8601 cursor value to pass in the next request to retrieve the subsequent page.
pageInfo.totalintegerTotal number of SSO log entries matching the query.
pageInfo.hasMorebooleanIndicates whether additional pages of results are available.