interface ApiScoreGetParams {
    configId?: null | string;
    dataType?: null | ApiScoreDataType;
    fromTimestamp?: null | string;
    limit?: null | number;
    name?: null | string;
    operator?: null | string;
    page?: null | number;
    queueId?: null | string;
    scoreIds?: null | string;
    source?: null | ApiScoreSource;
    toTimestamp?: null | string;
    traceTags?: (null | string)[];
    userId?: null | string;
    value?: null | number;
}

Properties

configId?: null | string

Retrieve only scores with a specific configId.

dataType?: null | ApiScoreDataType

Retrieve only scores with a specific dataType.

fromTimestamp?: null | string

Optional filter to only include scores 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.

name?: null | string

Retrieve only scores with this name.

operator?: null | string

Retrieve only scores with value.

page?: null | number

Page number, starts at 1.

queueId?: null | string

Retrieve only scores with a specific annotation queueId.

scoreIds?: null | string

Comma-separated list of score IDs to limit the results to.

source?: null | ApiScoreSource

Retrieve only scores from a specific source.

toTimestamp?: null | string

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

date-time

traceTags?: (null | string)[]

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

userId?: null | string

Retrieve only scores with this userId associated to the trace.

value?: null | number

Retrieve only scores with value.

double