Type Alias QriResponseItem

Result of a single QRI generation request, including status and the generated QRI value.

type QriResponseItem = {
    connection: string;
    connectionType: QriConnectionType;
    dataSourceId: string;
    isFullyQualified: boolean;
    qri: string;
    requestId?: string;
    status?: { code: number; errorResponse?: DcaasApiError };
}
Index
connection: string
connectionType: QriConnectionType

Type of connection identifier used in QRI generation requests:

  • id — connection UUID
  • name — connection name, optionally space-qualified (for example, MySpace:MyConnection or :MyConnection)
  • properties — connection string in Qlik CONNECT format
dataSourceId: string
isFullyQualified: boolean
qri: string
requestId?: string

Echo of the caller-provided requestId from the corresponding request entry.

status?: { code: number; errorResponse?: DcaasApiError }

Status of this QRI generation entry.

Type Declaration

  • code: number

    HTTP-style status code for this entry. 200 indicates success; values above 200 indicate failure. Detailed error information is included in errorResponse on failure.

  • OptionalerrorResponse?: DcaasApiError

    DCaaS-specific error information including error code, code name, and detailed message.