Skip to content
  • Auto
  • Light
  • Dark
Get Started

List Events

List Events
post/api/v1/systemlog/exports/{export_id}/events

Invokes the c1.api.systemlog.v1.ExportService.ListEvents method.

Path Parameters
export_idstring

The exportId field.

Body Parameters
pageSizenumber
optional

The pageSize field.

formatint32
pageTokenstring
optional

The pageToken field.

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/exports/$EXPORT_ID/events \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY"
200 Example
{
  "list": [
    {
      "foo": "bar"
    }
  ],
  "nextPageToken": "nextPageToken"
}