interface ApiPromptsListParams {
    fromUpdatedAt?: null | string;
    label?: null | string;
    limit?: null | number;
    name?: null | string;
    page?: null | number;
    tag?: null | string;
    toUpdatedAt?: null | string;
}

Properties

fromUpdatedAt?: null | string

Optional filter to only include prompt versions created/updated on or after a certain datetime (ISO 8601)

date-time

label?: null | string
limit?: null | number

limit of items per page

name?: null | string
page?: null | number

page number, starts at 1

tag?: null | string
toUpdatedAt?: null | string

Optional filter to only include prompt versions created/updated before a certain datetime (ISO 8601)

date-time