interface ApiTraceListParams {
    fromTimestamp?: null | string;
    limit?: null | number;
    name?: null | string;
    orderBy?: null | string;
    page?: null | number;
    release?: null | string;
    sessionId?: null | string;
    tags?: (null | string)[];
    toTimestamp?: null | string;
    userId?: null | string;
    version?: null | string;
}

Properties

fromTimestamp?: null | string

Optional filter to only include traces with a trace.timestamp 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.

name?: null | string
orderBy?: null | string

Format of the string [field].[asc/desc]. Fields: id, timestamp, name, userId, release, version, public, bookmarked, sessionId. Example: timestamp.asc

page?: null | number

Page number, starts at 1

release?: null | string

Optional filter to only include traces with a certain release.

sessionId?: null | string
tags?: (null | string)[]

Only traces that include all of these tags will be returned.

toTimestamp?: null | string

Optional filter to only include traces with a trace.timestamp before a certain datetime (ISO 8601)

date-time

userId?: null | string
version?: null | string

Optional filter to only include traces with a certain version.