List event log entries

Returns a page of event log entries. Events can occur either system or user initiated. In case an event is user initiated the event context contains information on the user that triggered it and the associated HTTP request is captured.

Request
query Parameters
sortDirection
string

The direction the returned data will be sorted by.

Enum: "Asc" "Desc"
type
Array of strings

If set, only returns events with the specified type. More than 1 type can be specified.

Items Enum: "System" "Request" "Legacy"
includeReadRequests
boolean

If set to true, also includes read request events (these are filtered out by default).

includeFailedRequests
boolean

If set to true, also includes failed request events (these are filtered out by default). Note that not all failed requests can be captured or assigned to your organization, depending on the nature of the failure.

entityId
Array of strings <uuid>

If set, only returns events related to the specified identifier. For example, to filter on events for a given provider, set this parameter to the identifier of that provider. More than 1 entity identifier can be specified.

category
Array of strings

If set, only returns events related to the specified category. More than 1 category can be specified.

Items Enum: "Verifications" "ProviderInfo" "ProviderManagement" "Organization" "Integrations" "Groups" "ProviderProfile" "Beta" "Mpd" "Console" "FacilityManagement" "FacilityInfo"
subcategory
Array of strings

If set, only returns events related to the specified subcategory. The subcategories differ per category. More than 1 subcategory can be specified.

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.

correlationId
string <uuid>

If set, only returns events related to the specified correlation identifier.

sortedBy
string

The property by which the returned data will be sorted.

Enum: "Timestamp" "Type"
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.

Responses
200

Success

400

Bad Request

401

Unauthorized

403

Forbidden

500

Server Error

get/log/events
Response samples
application/json
{
  • "previousCursor": "string",
  • "nextCursor": "string",
  • "nextOffset": 0,
  • "pageSize": 20,
  • "count": 1,
  • "totalCount": 1,
  • "items": [
    ],
  • "sortedBy": "Timestamp",
  • "sortDirection": "Desc",
  • "sort": {
    }
}