Detailed information about the query.

Query

interface DataKioskApiModelQuery {
    createdTime: string;
    dataDocumentId?: string;
    errorDocumentId?: string;
    pagination?: DataKioskApiModelQueryPagination;
    processingEndTime?: string;
    processingStartTime?: string;
    processingStatus:
        | "CANCELLED"
        | DataKioskApiModelQueryProcessingStatusEnum
        | "DONE"
        | "FATAL"
        | "IN_PROGRESS"
        | "IN_QUEUE";
    query: string;
    queryId: string;
}

Properties

createdTime: string

The date and time when the query was created, in ISO 8601 date time format.

Query

dataDocumentId?: string

The data document identifier. This identifier is only present when there is data available as a result of the query. This identifier is unique only in combination with a selling partner account ID. Pass this identifier into the getDocument operation to get the information required to retrieve the data document's contents.

Query

errorDocumentId?: string

The error document identifier. This identifier is only present when an error occurs during query processing. This identifier is unique only in combination with a selling partner account ID. Pass this identifier into the getDocument operation to get the information required to retrieve the error document's contents.

Query

Query

processingEndTime?: string

The date and time when the query processing completed, in ISO 8601 date time format.

Query

processingStartTime?: string

The date and time when the query processing started, in ISO 8601 date time format.

Query

processingStatus:
    | "CANCELLED"
    | DataKioskApiModelQueryProcessingStatusEnum
    | "DONE"
    | "FATAL"
    | "IN_PROGRESS"
    | "IN_QUEUE"

The processing status of the query.

Query

query: string

The submitted query.

Query

queryId: string

The query identifier. This identifier is unique only in combination with a selling partner account ID.

Query

MMNEPVFCICPMFPCPTTAAATR