List Events
List Events
post/api/v1/systemlog/events
ListEvents pulls Events from the ConductorOne system.
This endpoint should be used to synchorize the system log events to external systems.
Body Parameters
pageSizenumber
optional
The pageSize field.
formatint32
pageTokenstring
optional
The pageToken field.
sincestring
optional
formatdate-time
sinceEventUidstring
optional
The sinceEventUid field.
sortDirectionenum
optional
"SORT_DIRECTION_UNSPECIFIED" OR "SORT_DIRECTION_ASC" OR "SORT_DIRECTION_DESC"
The sortDirection field.
untilstring
optional
formatdate-time
Returns
listarray of map
optional
List contains an array of JSON OCSF events.
nextPageTokenstring
optional
The nextPageToken field.
Request example cURL
curl https://{tenantDomain}.conductor.one/api/v1/systemlog/events \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY"200 Example
{
"list": [
{
"foo": "bar"
}
],
"nextPageToken": "nextPageToken"
}