Sso
Returns a paginated list of SSO log entries
Returns a paginated list of SSO log entries.
GET
https://example.thoughtindustries.com/incoming/v2/logs/ssoExample request
curl "https://example.thoughtindustries.com/incoming/v2/logs/sso" \
-H 'Authorization: Bearer YOUR_API_KEY'Parameters
| Name | Type | Required | Location | Description |
|---|---|---|---|---|
type | string | Yes | query | The SSO log type to filter results by. |
cursor | ISO 8601 timestamp | No | query | ISO 8601 timestamp used as the pagination cursor to fetch the next page of results. |
perPage | integer | No | query | Number of log entries to return per page. |
Example response
{
"data": {
"APICacheLogs": {
"data": [
{}
],
"pageInfo": {
"perPage": 0,
"cursor": "string",
"total": 0,
"hasMore": true
}
}
}
}Response fields
| Field | Type | Description |
|---|---|---|
data | object[] | Array of SSO log entry objects matching the requested type. |
pageInfo | CursorPageInfo | Pagination metadata for the current result set. |
pageInfo.perPage | integer | Number of results returned per page. |
pageInfo.cursor | string | ISO 8601 cursor value to pass in the next request to retrieve the subsequent page. |
pageInfo.total | integer | Total number of SSO log entries matching the query. |
pageInfo.hasMore | boolean | Indicates whether additional pages of results are available. |