interface ApiSessionsListParams {
    fromTimestamp?: null | string;
    limit?: null | number;
    page?: null | number;
    toTimestamp?: null | string;
}

Properties

fromTimestamp?: null | string

Optional filter to only include sessions created on or after a certain datetime (ISO 8601)

date-time

limit?: null | number

Limit of items per page. If you encounter api issues due to too large page sizes, try to reduce the limit.

page?: null | number

Page number, starts at 1

toTimestamp?: null | string

Optional filter to only include sessions created before a certain datetime (ISO 8601)

date-time