Parameters for the getPromptSessionEntries operation.

interface GetPromptSessionEntriesParams {
    bookmark?: string;
    headers?: OutgoingHttpHeaders;
    limit?: string;
    projectId?: string;
    sessionId: string;
    signal?: AbortSignal;
}

Hierarchy

  • DefaultParams
    • GetPromptSessionEntriesParams

Properties

bookmark?: string

Bookmark from a previously limited get request.

headers?: OutgoingHttpHeaders
limit?: string

Limit for results to retrieve, default 20.

projectId?: string

[REQUIRED] Specifies the project ID as the target. One target must be supplied per request.

sessionId: string

Prompt Session ID.

signal?: AbortSignal