Interface ApiObservationsGetManyParams

interface ApiObservationsGetManyParams {
    fromStartTime?: null | string;
    limit?: null | number;
    name?: null | string;
    page?: null | number;
    parentObservationId?: null | string;
    toStartTime?: null | string;
    traceId?: null | string;
    type?: null | string;
    userId?: null | string;
    version?: null | string;
}

Properties

fromStartTime?: null | string

Retrieve only observations with a start_time or or after this 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
page?: null | number

Page number, starts at 1.

parentObservationId?: null | string
toStartTime?: null | string

Retrieve only observations with a start_time before this datetime (ISO 8601).

date-time

traceId?: null | string
type?: null | string
userId?: null | string
version?: null | string

Optional filter to only include observations with a certain version.