List event log exports

Returns metadata for exported event logs.

Request
query Parameters
prefix
string [ 0 .. 640 ] characters

If set the result is filtered to return only files whose path begin with the specified prefix.

before
string <date-time>

If set, only returns events from before this date.

beforeInclusive
boolean

If set to true, will include events created exactly at before date and time too.

after
string <date-time>

If set, only returns events from after this date.

afterInclusive
boolean

If set to true, will include events created exactly at after date and time too.

sortedBy
string

The property by which the returned data will be sorted.

Enum: "Path" "CreatedAt"
object

If set, the properties and directions the returned data will be sorted by.

offset
integer <int32>
Deprecated

The offset for the page to start.

cursor
string

The cursor to render the page requested. To load the first page send an empty cursor, then the system will generate the cursors to go to the next and/or previous pages automatically.

count
integer <int32>

The number of items to include in a single page.

sortDirection
string

The direction the returned data will be sorted by.

Enum: "Asc" "Desc"
Responses
200

Success

401

Unauthorized

403

Forbidden

404

Not Found

500

Server Error

get/files/exports
Response samples
application/json
{
  • "sort": {
    },
  • "previousCursor": "string",
  • "nextCursor": "string",
  • "nextOffset": 0,
  • "pageSize": 0,
  • "count": 0,
  • "totalCount": 0,
  • "items": [
    ],
  • "sortedBy": "Path",
  • "sortDirection": "Asc"
}