Interface EventsApiEventsListRequest

Request parameters for eventsList operation in EventsApi.

EventsApiEventsListRequest

interface EventsApiEventsListRequest {
    action?: "download";
    filename?: string;
    from?: string;
    jobId?: number;
    orgId?: number;
    projectId?: number;
    queryId?: string;
    taskId?: number;
    to?: string;
    userId?: number;
}

Properties

action?: "download"

Used to start downloading process after annotation file had been created

EventsApiEventsList

filename?: string

Desired output file name

EventsApiEventsList

from?: string

Filter events after the datetime. If no 'from' or 'to' parameters are passed, the last 30 days will be set.

EventsApiEventsList

jobId?: number

Filter events by job ID

EventsApiEventsList

orgId?: number

Filter events by organization ID

EventsApiEventsList

projectId?: number

Filter events by project ID

EventsApiEventsList

queryId?: string

ID of query request that need to check or download

EventsApiEventsList

taskId?: number

Filter events by task ID

EventsApiEventsList

to?: string

Filter events before the datetime. If no 'from' or 'to' parameters are passed, the last 30 days will be set.

EventsApiEventsList

userId?: number

Filter events by user ID

EventsApiEventsList