Apps

Apps are central to the Qlik platform and is the resource you use when interacting with Qlik Sense and QlikView apps.

Download specification

Endpoints

Creates a new app.

Creates a new app.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Request Body

Required

*/*

Attributes that the user wants to set in new app.

  • */*object
    Show */* properties
    • attributesobject
      Show attributes properties
      • namestring

        The name (title) of the application

      • usagestring

        Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP"

      • localestring

        Set custom locale instead of the system default

      • spaceIdstring

        The space ID of the application

      • descriptionstring

        The description of the application

Responses

200

application/json

OK

Application attributes and user privileges.

  • application/jsonobject

    Application attributes and user privileges.

    Show application/json properties
    • createarray of objects

      Object create privileges. Hints to the client what type of objects the user is allowed to create.

      Show create properties
      • resourcestring

        Type of resource. For example, sheet, story, bookmark, etc.

      • canCreateboolean

        Is set to true if the user has privileges to create the resource.

    • attributesobject

      App attributes. This structure can also contain extra user-defined attributes.

      Show attributes properties
      • idstring

        The App ID.

      • namestring

        App name.

      • ownerstringDeprecated

        Deprecated. Use user api to fetch user metadata.

      • usagestring

        Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP"

      • customobject

        Contains dynamic JSON data specified by the client.

      • ownerIdstring

        Identifier of the app owner.

      • encryptedboolean

        If set to true, the app is encrypted.

      • publishedboolean

        True if the app is published on-prem, distributed in QCS, false if not.

      • thumbnailstring

        App thumbnail.

      • createdDatestring

        The date and time when the app was created.

      • descriptionstring

        App description.

      • originAppIdstring

        The Origin App ID for published apps.

      • publishTimestring

        The date and time when the app was published, empty if unpublished.

      • dynamicColorstring

        The dynamic color of the app.

      • modifiedDatestring

        The date and time when the app was modified.

      • lastReloadTimestring

        Date and time of the last reload of the app.

      • hasSectionAccessboolean

        If set to true, the app has section access configured,

      • isDirectQueryModeboolean

        True if the app is a Direct Query app, false if not

    • privilegesarray of strings

      Application privileges. Hints to the client what actions the user is allowed to perform. Could be any of:

      • read
      • create
      • update
      • delete
      • reload
      • import
      • publish
      • duplicate
      • export
      • exportdata
      • change_owner
      • change_space
POST /v1/apps
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps" \
-X POST \
-H "Content-type: */*" \
-H "Authorization: Bearer <API-key>" \
-d '{"attributes":{"name":"string","locale":"string","spaceId":"string","description":"string"}}'
const https = require('https')
  const data = JSON.stringify({"attributes":{"name":"string","locale":"string","spaceId":"string","description":"string"}})
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps',
    'method': 'POST',
    'headers': {
      'Content-type': '*/*',
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  req.write(data)
  
qlik app create \
--attributes-description="string" \
--attributes-locale="string" \
--attributes-name="string" \
--attributes-spaceId="string"

Request

{
  "attributes": {
    "name": "string",
    "locale": "string",
    "spaceId": "string",
    "description": "string"
  }
}

Response

{
  "create": [
    {
      "resource": "string",
      "canCreate": true
    }
  ],
  "attributes": {
    "id": "string",
    "name": "string",
    "owner": "string",
    "custom": {},
    "ownerId": "string",
    "encrypted": true,
    "published": true,
    "thumbnail": "string",
    "createdDate": "2018-10-30T07:06:22Z",
    "description": "string",
    "originAppId": "string",
    "publishTime": "2018-10-30T07:06:22Z",
    "dynamicColor": "string",
    "modifiedDate": "2018-10-30T07:06:22Z",
    "lastReloadTime": "2018-10-30T07:06:22Z",
    "hasSectionAccess": true,
    "isDirectQueryMode": true
  },
  "privileges": [
    "string"
  ]
}

Retrieves information for a specific app.

Retrieves information for a specific app.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

Responses

200

application/json

OK

Application attributes and user privileges.

  • application/jsonobject

    Application attributes and user privileges.

    Show application/json properties
    • createarray of objects
    • attributesobject

      App attributes. This structure can also contain extra user-defined attributes.

      Show attributes properties
      • idstring

        The App ID.

      • namestring

        App name.

      • ownerstringDeprecated

        Deprecated. Use user api to fetch user metadata.

      • usagestring

        Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP"

      • customobject

        Contains dynamic JSON data specified by the client.

      • ownerIdstring

        Identifier of the app owner.

      • encryptedboolean

        If set to true, the app is encrypted.

      • publishedboolean

        True if the app is published on-prem, distributed in QCS, false if not.

      • thumbnailstring

        App thumbnail.

      • createdDatestring

        The date and time when the app was created.

      • descriptionstring

        App description.

      • originAppIdstring

        The Origin App ID for published apps.

      • publishTimestring

        The date and time when the app was published, empty if unpublished.

      • dynamicColorstring

        The dynamic color of the app.

      • modifiedDatestring

        The date and time when the app was modified.

      • lastReloadTimestring

        Date and time of the last reload of the app.

      • hasSectionAccessboolean

        If set to true, the app has section access configured,

      • isDirectQueryModeboolean

        True if the app is a Direct Query app, false if not

    • privilegesarray of strings

      Application privileges. Hints to the client what actions the user is allowed to perform. Could be any of:

      • read
      • create
      • update
      • delete
      • reload
      • import
      • publish
      • duplicate
      • export
      • exportdata
      • change_owner
      • change_space
GET /v1/apps/{appId}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app get <appId>

Response

{
  "create": [
    {}
  ],
  "attributes": {
    "id": "string",
    "name": "string",
    "owner": "string",
    "custom": {},
    "ownerId": "string",
    "encrypted": true,
    "published": true,
    "thumbnail": "string",
    "createdDate": "2018-10-30T07:06:22Z",
    "description": "string",
    "originAppId": "string",
    "publishTime": "2018-10-30T07:06:22Z",
    "dynamicColor": "string",
    "modifiedDate": "2018-10-30T07:06:22Z",
    "lastReloadTime": "2018-10-30T07:06:22Z",
    "hasSectionAccess": true,
    "isDirectQueryMode": true
  },
  "privileges": [
    "string"
  ]
}

Updates the information for a specific app.

Updates the information for a specific app.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

Request Body

Required

*/*

Attributes that user wants to set.

  • */*object
    Show */* properties
    • attributesobject
      Show attributes properties
      • namestring

        The name (title) of the application.

      • descriptionstring

        The description of the application.

Responses

200

application/json

OK

Application attributes and user privileges.

  • application/jsonobject

    Application attributes and user privileges.

    Show application/json properties
    • createarray of objects
    • attributesobject

      App attributes. This structure can also contain extra user-defined attributes.

      Show attributes properties
      • idstring

        The App ID.

      • namestring

        App name.

      • ownerstringDeprecated

        Deprecated. Use user api to fetch user metadata.

      • usagestring

        Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP"

      • customobject

        Contains dynamic JSON data specified by the client.

      • ownerIdstring

        Identifier of the app owner.

      • encryptedboolean

        If set to true, the app is encrypted.

      • publishedboolean

        True if the app is published on-prem, distributed in QCS, false if not.

      • thumbnailstring

        App thumbnail.

      • createdDatestring

        The date and time when the app was created.

      • descriptionstring

        App description.

      • originAppIdstring

        The Origin App ID for published apps.

      • publishTimestring

        The date and time when the app was published, empty if unpublished.

      • dynamicColorstring

        The dynamic color of the app.

      • modifiedDatestring

        The date and time when the app was modified.

      • lastReloadTimestring

        Date and time of the last reload of the app.

      • hasSectionAccessboolean

        If set to true, the app has section access configured,

      • isDirectQueryModeboolean

        True if the app is a Direct Query app, false if not

    • privilegesarray of strings

      Application privileges. Hints to the client what actions the user is allowed to perform. Could be any of:

      • read
      • create
      • update
      • delete
      • reload
      • import
      • publish
      • duplicate
      • export
      • exportdata
      • change_owner
      • change_space
PUT /v1/apps/{appId}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}" \
-X PUT \
-H "Content-type: */*" \
-H "Authorization: Bearer <API-key>" \
-d '{"attributes":{"name":"string","description":"string"}}'
const https = require('https')
  const data = JSON.stringify({"attributes":{"name":"string","description":"string"}})
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}',
    'method': 'PUT',
    'headers': {
      'Content-type': '*/*',
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  req.write(data)
  
qlik app update <appId> \
--attributes-description="string" \
--attributes-name="string"

Request

{
  "attributes": {
    "name": "string",
    "description": "string"
  }
}

Response

{
  "create": [
    {}
  ],
  "attributes": {
    "id": "string",
    "name": "string",
    "owner": "string",
    "custom": {},
    "ownerId": "string",
    "encrypted": true,
    "published": true,
    "thumbnail": "string",
    "createdDate": "2018-10-30T07:06:22Z",
    "description": "string",
    "originAppId": "string",
    "publishTime": "2018-10-30T07:06:22Z",
    "dynamicColor": "string",
    "modifiedDate": "2018-10-30T07:06:22Z",
    "lastReloadTime": "2018-10-30T07:06:22Z",
    "hasSectionAccess": true,
    "isDirectQueryMode": true
  },
  "privileges": [
    "string"
  ]
}

Deletes a specific app.

Deletes a specific app.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

Responses

200

OK

DELETE /v1/apps/{appId}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}" \
-X DELETE \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}',
    'method': 'DELETE',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app rm <appId>

Copies a specific app.

Copies a specific app.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

Request Body

Required

*/*

Attributes that should be set in the copy.

  • */*object
    Show */* properties
    • attributesobject
      Show attributes properties
      • namestring

        The name (title) of the application

      • usagestring

        Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP"

      • localestring

        Set custom locale instead of the system default

      • spaceIdstring

        The space ID of the application

      • descriptionstring

        The description of the application

Responses

200

application/json

OK

Application attributes and user privileges.

  • application/jsonobject

    Application attributes and user privileges.

    Show application/json properties
    • createarray of objects
    • attributesobject

      App attributes. This structure can also contain extra user-defined attributes.

      Show attributes properties
      • idstring

        The App ID.

      • namestring

        App name.

      • ownerstringDeprecated

        Deprecated. Use user api to fetch user metadata.

      • usagestring

        Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP"

      • customobject

        Contains dynamic JSON data specified by the client.

      • ownerIdstring

        Identifier of the app owner.

      • encryptedboolean

        If set to true, the app is encrypted.

      • publishedboolean

        True if the app is published on-prem, distributed in QCS, false if not.

      • thumbnailstring

        App thumbnail.

      • createdDatestring

        The date and time when the app was created.

      • descriptionstring

        App description.

      • originAppIdstring

        The Origin App ID for published apps.

      • publishTimestring

        The date and time when the app was published, empty if unpublished.

      • dynamicColorstring

        The dynamic color of the app.

      • modifiedDatestring

        The date and time when the app was modified.

      • lastReloadTimestring

        Date and time of the last reload of the app.

      • hasSectionAccessboolean

        If set to true, the app has section access configured,

      • isDirectQueryModeboolean

        True if the app is a Direct Query app, false if not

    • privilegesarray of strings

      Application privileges. Hints to the client what actions the user is allowed to perform. Could be any of:

      • read
      • create
      • update
      • delete
      • reload
      • import
      • publish
      • duplicate
      • export
      • exportdata
      • change_owner
      • change_space
POST /v1/apps/{appId}/copy
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/copy" \
-X POST \
-H "Content-type: */*" \
-H "Authorization: Bearer <API-key>" \
-d '{"attributes":{"name":"string","locale":"string","spaceId":"string","description":"string"}}'
const https = require('https')
  const data = JSON.stringify({"attributes":{"name":"string","locale":"string","spaceId":"string","description":"string"}})
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/copy',
    'method': 'POST',
    'headers': {
      'Content-type': '*/*',
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  req.write(data)
  
qlik app copy <appId> \
--attributes-description="string" \
--attributes-locale="string" \
--attributes-name="string" \
--attributes-spaceId="string"

Request

{
  "attributes": {
    "name": "string",
    "locale": "string",
    "spaceId": "string",
    "description": "string"
  }
}

Response

{
  "create": [
    {}
  ],
  "attributes": {
    "id": "string",
    "name": "string",
    "owner": "string",
    "custom": {},
    "ownerId": "string",
    "encrypted": true,
    "published": true,
    "thumbnail": "string",
    "createdDate": "2018-10-30T07:06:22Z",
    "description": "string",
    "originAppId": "string",
    "publishTime": "2018-10-30T07:06:22Z",
    "dynamicColor": "string",
    "modifiedDate": "2018-10-30T07:06:22Z",
    "lastReloadTime": "2018-10-30T07:06:22Z",
    "hasSectionAccess": true,
    "isDirectQueryMode": true
  },
  "privileges": [
    "string"
  ]
}

Retrieves the lineage for an app. Returns a JSON-formatted array of strings describing the lineage of the app.

Retrieves the lineage for an app. Returns a JSON-formatted array of strings describing the lineage of the app.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

Responses

200

application/json

OK

  • application/jsonarray of objects
    Show application/json properties
    • statementstring

      The LOAD and SELECT script statements from the data load script.

    • discriminatorstring

      A string indicating the origin of the data:

      • [filename]: the data comes from a local file.
      • INLINE: the data is entered inline in the load script.
      • RESIDENT: the data comes from a resident table. The table name is listed.
      • AUTOGENERATE: the data is generated from the load script (no external table of data source).
      • Provider: the data comes from a data connection. The connector source name is listed.
      • [webfile]: the data comes from a web-based file.
      • STORE: path to QVD or TXT file where data is stored.
      • EXTENSION: the data comes from a Server Side Extension (SSE).
GET /v1/apps/{appId}/data/lineage
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/data/lineage" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/data/lineage',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app data lineage \
--appId="string"

Response

[
  {
    "statement": "string",
    "discriminator": "string"
  }
]

Retrieves the data model and reload statistics metadata of an app. An empty metadata structure is returned if the metadata is not available in the app.

Retrieves the data model and reload statistics metadata of an app. An empty metadata structure is returned if the metadata is not available in the app.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

Responses

200

application/json

OK

  • application/jsonobject
    Show application/json properties
    • usagestring

      Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP"

    • fieldsarray of objects

      List of field descriptions.

      Show fields properties
      • hashstring

        Hash of the data in the field. If the data in a reload is the same, the hash will be consistent.

      • namestring

        Name of the field.

      • tagsarray of strings

        Gives information on a field. For example, it can return the type of the field. Examples: key, text, ASCII.

      • commentstring

        Field comment.

      • cardinalinteger

        Number of distinct field values.

      • byte_sizeinteger

        Static RAM memory used in bytes.

      • is_hiddenboolean

        If set to true, the field is hidden. The default value is false.

      • is_lockedboolean

        If set to true, the field is locked. The default value is false.

      • is_systemboolean

        If set to true, the field is a system field. The default value is false.

      • is_numericboolean

        Is set to true if the value is a numeric. The default value is false.

      • src_tablesarray of strings

        List of table names.

      • is_semanticboolean

        If set to true, the field is semantic. The default value is false.

      • total_countinteger

        Total number of field values.

      • distinct_onlyboolean

        If set to true, only distinct field values are shown. The default value is false.

      • always_one_selectedboolean

        If set to true, the field has one and only one selection (not 0 and not more than 1). If this property is set to true, the field cannot be cleared anymore and no more selections can be performed in that field. The default value is false.

    • tablesarray of objects

      List of table descriptions.

      Show tables properties
      • namestring

        Name of the table.

      • commentstring

        Table comment.

      • is_looseboolean

        If set to true, the table is loose due to circular connection. The default value is false.

      • byte_sizeinteger

        Static RAM memory used in bytes.

      • is_systemboolean

        If set to true, the table is a system table. The default value is false.

      • no_of_rowsinteger

        Number of rows.

      • is_semanticboolean

        If set to true, the table is semantic. The default value is false.

      • no_of_fieldsinteger

        Number of fields.

      • no_of_key_fieldsinteger

        Number of key fields.

    • reload_metaobject
      Show reload_meta properties
      • hardwareobject
        Show hardware properties
        • total_memoryinteger

          RAM available.

        • logical_coresinteger

          Number of logical cores available.

      • cpu_time_spent_msinteger

        Number of CPU milliseconds it took to reload the app.

      • peak_memory_bytesinteger

        Maximum number of bytes used during reload of the app.

      • fullReloadPeakMemoryBytesinteger

        Maximum number of bytes used during full reload of the app.

      • partialReloadPeakMemoryBytesinteger

        Maximum number of bytes used during partial reload of the app.

    • static_byte_sizeinteger

      Static memory usage for the app.

    • has_section_accessboolean

      If set to true, the app has section access configured.

    • is_direct_query_modeboolean
    • tables_profiling_dataarray of objects

      Profiling data of the tables in the app.

      Show tables_profiling_data properties
      • NoOfRowsinteger

        Number of rows in the table.

      • FieldProfilingarray of objects

        Field values profiling info

        Show FieldProfiling properties
        • Maxnumber

          Maximum value of numerical values. NaN otherwise.

        • Minnumber

          Minimum value of numerical values. NaN otherwise.

        • Stdnumber

          Standard deviation of numerical values. NaN otherwise.

        • Sumnumber

          Sum of all numerical values. NaN otherwise.

        • Namestring

          Name of the field.

        • Sum2number

          Squared sum of all numerical values. NaN otherwise.

        • Mediannumber

          Median of all numerical values. NaN otherwise.

        • Averagenumber

          Average of all numerical values. NaN otherwise.

        • Kurtosisnumber

          Kurtosis of the numerical values. NaN otherwise.

        • Skewnessnumber

          Skewness of the numerical values. NaN otherwise.

        • FieldTagsarray of strings

          List of tags related to the field.

        • Fractilesarray of numbers

          The .01, .05, .1, .25, .5, .75, .9, .95, .99 fractiles. Array of NaN otherwise.

        • NegValuesinteger

          Number of negative values

        • PosValuesinteger

          Number of positive values

        • LastSortedstring

          For textual values the last sorted string.

        • NullValuesinteger

          Number of null values

        • TextValuesinteger

          Number of textual values

        • ZeroValuesinteger

          Number of zero values for numerical values

        • FirstSortedstring

          For textual values the first sorted string.

        • AvgStringLennumber

          Average string length of textual values. 0 otherwise.

        • EmptyStringsinteger

          Number of empty strings

        • MaxStringLeninteger

          Maximum string length of textual values. 0 otherwise.

        • MinStringLeninteger

          Minimum string length of textual values. 0 otherwise.

        • MostFrequentarray of objects

          Three most frequent values and their frequencies

          Show MostFrequent properties
          • Symbolobject
            Show Symbol properties
            • Textstring

              String value of the symbol. This parameter is optional and present only if Symbol is a string.

            • Numbernumber

              Numeric value of the symbol. NaN otherwise.

          • Frequencyinteger

            Frequency of the above symbol in the field

        • NumberFormatobject

          Sets the formatting of a field. The properties of qFieldAttributes and the formatting mechanism are described below.

          Formatting mechanism

          The formatting mechanism depends on the type set in qType, as shown below:

          In case of inconsistencies between the type and the format pattern, the format pattern takes precedence over the type.

          Type is DATE, TIME, TIMESTAMP or INTERVAL

          The following applies:

          • If a format pattern is defined in qFmt , the formatting is as defined in qFmt .
          • If qFmt is empty, the formatting is defined by the number interpretation variables included at the top of the script ( TimeFormat , DateFormat , TimeStampFormat ).
          • The properties qDec , qThou , qnDec , qUseThou are not used.

          Type is INTEGER

          The following applies:

          • If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the formatting mechanism uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
          • If no format pattern is defined in qFmt , no formatting is applied. The properties qDec , qThou , qnDec , qUseThou and the number interpretation variables defined in the script are not used .

          Type is REAL

          The following applies:

          • If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
          • If no format pattern is defined in qFmt , and if the value is almost an integer value (for example, 14,000012), the value is formatted as an integer. The properties qDec , qThou , qnDec , qUseThou are not used.
          • If no format pattern is defined in qFmt , and if qnDec is defined and not 0, the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.
          • If no format pattern is defined in qFmt , and if qnDec is 0, the number of decimals is 14 and the property qDec is used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.

          Type is FIX

          The following applies:

          • If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of the script ( DecimalSep and ThousandSep ).
          • If no format pattern is defined in qFmt , the properties qDec and qnDec are used. If qDec is not defined, the variable DecimalSep defined at the top of the script is used.

          Type is MONEY

          The following applies:

          • If a format pattern is defined in qFmt , the engine looks at the values set in qDec and qThou . If these properties are not defined, the engine uses the number interpretation variables included at the top of any script ( MoneyDecimalSep and MoneyThousandSep ).
          • If no format pattern is defined in qFmt , the engine uses the number interpretation variables included at the top of the script ( MoneyDecimalSep and MoneyThousandSep ).

          Type is ASCII

          No formatting, qFmt is ignored.

          Show NumberFormat properties
          • Decstring

            Defines the decimal separator. Example: .

          • Fmtstring

            Defines the format pattern that applies to qText . Is used in connection to the type of the field (parameter qType ). For more information, see Formatting mechanism. Example: YYYY-MM-DD for a date.

          • Thoustring

            Defines the thousand separator (if any). Is used if qUseThou is set to 1. Example: ,

          • Typestring

            Can be one of: "U""A""I""R""F""M""D""T""TS""IV"

          • nDecinteger

            Number of decimals. Default is 10.

          • UseThouinteger

            Defines whether or not a thousands separator must be used. Default is 0.

        • SumStringLeninteger

          Sum of all characters in strings in the field

        • NumericValuesinteger

          Number of numeric values

        • DistinctValuesinteger

          Number of distinct values

        • DistinctTextValuesinteger

          Number of distinct text values

        • DistinctNumericValuesinteger

          Number of distinct numeric values

        • FrequencyDistributionobject
          Show FrequencyDistribution properties
          • BinsEdgesarray of numbers

            Bins edges.

          • Frequenciesarray of integers

            Bins frequencies.

          • NumberOfBinsinteger

            Number of bins.

GET /v1/apps/{appId}/data/metadata
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/data/metadata" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/data/metadata',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app data metadata \
--appId="string"

Response

{
  "fields": [
    {
      "hash": "string",
      "name": "string",
      "tags": [
        "string"
      ],
      "comment": "string",
      "cardinal": 42,
      "byte_size": 42,
      "is_hidden": true,
      "is_locked": true,
      "is_system": true,
      "is_numeric": true,
      "src_tables": [
        "string"
      ],
      "is_semantic": true,
      "total_count": 42,
      "distinct_only": true,
      "always_one_selected": true
    }
  ],
  "tables": [
    {
      "name": "string",
      "comment": "string",
      "is_loose": true,
      "byte_size": 42,
      "is_system": true,
      "no_of_rows": 42,
      "is_semantic": true,
      "no_of_fields": 42,
      "no_of_key_fields": 42
    }
  ],
  "reload_meta": {
    "hardware": {
      "total_memory": 42,
      "logical_cores": 42
    },
    "cpu_time_spent_ms": 42,
    "peak_memory_bytes": 42,
    "fullReloadPeakMemoryBytes": 42,
    "partialReloadPeakMemoryBytes": 42
  },
  "static_byte_size": 42,
  "has_section_access": true,
  "is_direct_query_mode": true,
  "tables_profiling_data": [
    {
      "NoOfRows": 42,
      "FieldProfiling": [
        {
          "Max": 42,
          "Min": 42,
          "Std": 42,
          "Sum": 42,
          "Name": "string",
          "Sum2": 42,
          "Median": 42,
          "Average": 42,
          "Kurtosis": 42,
          "Skewness": 42,
          "FieldTags": [
            "string"
          ],
          "Fractiles": [
            42
          ],
          "NegValues": 42,
          "PosValues": 42,
          "LastSorted": "string",
          "NullValues": 42,
          "TextValues": 42,
          "ZeroValues": 42,
          "FirstSorted": "string",
          "AvgStringLen": 42,
          "EmptyStrings": 42,
          "MaxStringLen": 42,
          "MinStringLen": 42,
          "MostFrequent": [
            {
              "Symbol": {
                "Text": "string",
                "Number": 42
              },
              "Frequency": 42
            }
          ],
          "NumberFormat": {
            "Dec": "string",
            "Fmt": "string",
            "Thou": "string",
            "nDec": 10,
            "UseThou": 0
          },
          "SumStringLen": 42,
          "NumericValues": 42,
          "DistinctValues": 42,
          "DistinctTextValues": 42,
          "DistinctNumericValues": 42,
          "FrequencyDistribution": {
            "BinsEdges": [
              42
            ],
            "Frequencies": [
              42
            ],
            "NumberOfBins": 42
          }
        }
      ]
    }
  ]
}

Exports a specific app.

Exports a specific app.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Query Parameters

  • NoDataboolean

    The flag indicating if only object contents should be exported.

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

Responses

201

Created

400

Bad request

403

Forbidden

404

Not Found

POST /v1/apps/{appId}/export
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/export" \
-X POST \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/export',
    'method': 'POST',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app export <appId>

Returns information about supported analyses for the app's data model. Lists available analysis types, along with minimum and maximum number of dimensions, measures, and fields.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Header Parameters

  • accept-languagestring

    language specified as an ISO-639-1 code. Defaults to 'en' (English).

Path Parameters

  • appIdstring
    Required

    Qlik Sense app identifier

Responses

200

application/json

The request is successfully processed and information about supported analyses is returned.

  • application/jsonobject
    Show application/json properties
    • dataarray of objects
      Show data properties
      • idstring
      • compositionsarray of objects
        Show compositions properties
        • dimsobject

          Upper and lower bounds for items of specific classification types

          Show dims properties
          • maxnumber
          • minnumber
        • geosobject

          Upper and lower bounds for items of specific classification types

          Show geos properties
          • maxnumber
          • minnumber
        • msrsobject

          Upper and lower bounds for items of specific classification types

          Show msrs properties
          • maxnumber
          • minnumber
        • itemsobject

          Upper and lower bounds for items of specific classification types

          Show items properties
          • maxnumber
          • minnumber
        • temporalsobject

          Upper and lower bounds for items of specific classification types

          Show temporals properties
          • maxnumber
          • minnumber
        • descriptionobject
          Show description properties
          • longstring
          • shortstring
      • supportsMasterItemsboolean

        If analysis can work with master items (default is true)

      • requiresAutoCalendarPeriodboolean

        Used for period-specific analyses to indicate the defined or available calendar period must be of type autoCalendar

      • requiresDefinedAnalysisPeriodboolean

        Used for period-specific analyses to indicate the measure must be associated with one or more analysis periods

      • requiresAvailableAnalysisPeriodboolean

        Used for period-specific analyses to indicate the temporal dimension must be associated with one or more analysis periods

    • linksobject
      Show links properties
      • nextobject
        Show next properties
        • hrefstring
      • prevobject
        Show prev properties
        • hrefstring
      • selfobject
        Show self properties
        • hrefstring

400

application/json

Bad request. The payload is not formed correctly.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects

401

application/json

User is not authorized

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects

404

application/json

Not found

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects

422

application/json

Unprocessable entity. The payload contains fields that are invalid, such as too long of a query.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects

500

application/json

Internal server error

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
GET /v1/apps/{appId}/insight-analyses
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/insight-analyses" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/insight-analyses',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app insight-analyse ls <appId>

Response

{
  "data": [
    {
      "id": "string",
      "compositions": [
        {
          "dims": {
            "max": 42,
            "min": 42
          },
          "geos": {
            "max": 42,
            "min": 42
          },
          "msrs": {
            "max": 42,
            "min": 42
          },
          "items": {
            "max": 42,
            "min": 42
          },
          "temporals": {
            "max": 42,
            "min": 42
          },
          "description": {
            "long": "string",
            "short": "string"
          }
        }
      ],
      "supportsMasterItems": true,
      "requiresAutoCalendarPeriod": true,
      "requiresDefinedAnalysisPeriod": true,
      "requiresAvailableAnalysisPeriod": true
    }
  ],
  "links": {
    "next": {
      "href": "http://example.com"
    },
    "prev": {
      "href": "http://example.com"
    },
    "self": {
      "href": "http://example.com"
    }
  }
}

Returns analysis recommendations in response to a natural language question, a set of fields and master items, or a set of fields and master items with an optional target analysis.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Header Parameters

  • accept-languagestring

    language specified as an ISO-639-1 code. Defaults to 'en' (English).

Path Parameters

  • appIdstring
    Required

    Qlik Sense app identifier

Request Body

Required

application/json

Request payload can be of two types, using natural language query or consist of fields or master items and optional target analysis. In below examples, consider sales as a master item and product as field, so to get recommendations using sales and product, you can utilize below three approaches, also you can set language parameter in headers as part of accept-language. Examples: ``` { 'text': 'show me sales by product' } ``` ``` { 'fields': [ { 'name': 'product' } ], 'libItems': [ { libId: 'NwQfJ' } ] } ``` ``` { 'fields': [ { 'name': 'product' } ], 'libItems': [ { 'libId': 'NwQfJ' } ], 'targetAnalysis': { 'id': 'rank-rank' } } ```

  • application/jsonobject

    Request payload can be of two types, using natural language query or consist of fields or master items and optional target analysis. In below examples, consider sales as a master item and product as field, so to get recommendations using sales and product, you can utilize below three approaches, also you can set language parameter in headers as part of accept-language. Examples:

    {
      'text': 'show me sales by product'
    }
    
    {
      'fields': [
        {
          'name': 'product'
        }
      ],
      'libItems': [
        {
          libId: 'NwQfJ'
        }
      ]
    }
    
    {
      'fields': [
        {
          'name': 'product'
        }
      ],
      'libItems': [
        {
          'libId': 'NwQfJ'
        }
      ],
      'targetAnalysis': {
        'id': 'rank-rank'
      }
    }
    
    One of:
    • RecommendNaturalLangQueryobject
      Show RecommendNaturalLangQuery properties
      • textstring
        Required

        The NL query.

    • RecommendItemsobject
      Show RecommendItems properties
      • fieldsarray of objects

        structure for providing fields in recommendation request, user can retrieve the fields using insight-analyses/model endpoint

        Show fields properties
        • namestring
        • overridesobject
          Show overrides properties
          • classificationsarray of strings
          • defaultAggregationstring
      • libItemsarray of objects

        structure for providing master items in recommendation request, user can retrieve the libId of master item using insight-analyses/model endpoint

        Show libItems properties
        • libIdstring
        • overridesobject
          Show overrides properties
          • formatobject
            Show format properties
            • qDecstring
            • qFmtstring
            • qThoustring
            • qTypestring
            • qnDecnumber
            • qUseThounumber
      • targetAnalysisobject
        Show targetAnalysis properties
        • idstring

          id of the target analysis, returned by the GET insight-analyses endpoint

Responses

200

application/json

The request is successfully processed and recommendations are returned.

  • application/jsonobject
    Show application/json properties
    • dataarray of objects
      Show data properties
      • nluInfoarray of objects

        Contains break down of the asked question in the form of tokens with their classification.

        Show nluInfo properties
        • rolestring

          Role of the token or phrase from query

          Can be one of: "dimension""measure""date"

        • textstring

          Matching token or phrase from query

        • typestring

          Type of token from query

          Can be one of: "field""filter""master_dimension""master_measure""custom_analysis"

        • fieldNamestring

          Qlik sense application field selected for given token or phrase

        • fieldValuestring

          Filter value found from query

      • recAnalysesarray of objects
        Required
        Show recAnalyses properties
        • optionsobject

          (chart options + hypercube definition)

        • analysisobject
          Show analysis properties
          • titlestring
          • analysisstring

            Can be one of: "breakdown""changePoint""comparison""contribution""correlation""fact""mutualInfo""rank""spike""trend""values"

          • analysisGroupstring

            Can be one of: "anomaly""brekadown""comparison""correl""fact""list""mutualInfo""rank"

        • chartTypestring

          Chart type given to current recommendation

          Can be one of: "barchart""combochart""distributionplot""kpi""linechart""map""scatterplot""table"

        • relevancenumber

          percentage of selected items in the analysis to the overall items passed to the endpoint

        • partsarray of objects

400

application/json

Bad request. The payload is not formed correctly.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects

401

application/json

User is not authorized

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects

404

application/json

Not found

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects

409

application/json

Invalid Business Logic

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects

422

application/json

Unprocessable entity. The payload contains fields that are invalid, such as too long of a query.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects

500

application/json

Internal server error

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
POST /v1/apps/{appId}/insight-analyses/actions/recommend
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/insight-analyses/actions/recommend" \
-X POST \
-H "Content-type: application/json" \
-H "Authorization: Bearer <API-key>" \
-d '{"text":"string"}'
const https = require('https')
  const data = JSON.stringify({"text":"string"})
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/insight-analyses/actions/recommend',
    'method': 'POST',
    'headers': {
      'Content-type': 'application/json',
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  req.write(data)
  
qlik app insight-analyse recommend recommenditems <appId>

Request

{
  "text": "string"
}

Response

{
  "data": [
    {
      "nluInfo": [
        {
          "role": "dimension",
          "text": "string",
          "type": "field",
          "fieldName": "string",
          "fieldValue": "string"
        }
      ],
      "recAnalyses": [
        {
          "options": {},
          "analysis": {
            "title": "string",
            "analysis": "breakdown",
            "analysisGroup": "anomaly"
          },
          "chartType": "barchart",
          "relevance": 42,
          "parts": [
            {}
          ]
        }
      ]
    }
  ]
}

Returns information about model used to make analysis recommendations. Lists all fields and master items in the logical model, along with an indication of the validity of the logical model if the default is not used.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Qlik Sense app identifier

Responses

200

application/json

The request is successfully processed and information about model is returned.

  • application/jsonobject
    Show application/json properties
    • dataarray of objects
      Show data properties
      • fieldsarray of objects
        Show fields properties
        • namestring

          populated only for fields

        • isHiddenboolean

          whether the field is hidden in business logic

        • classificationsarray of strings

          classification defines the default role that attribute can play in an analysis

          Values may be any of: "dimension""measure""temporal""city""address""boolean""country""date""email""geographical""geoPoint""geoPolygon""hour""latitude""monetary""ordinal""percentage""postalCode""quarter""stateProvince""timestamp""week""weekDay""year""yearDay"

        • simplifiedClassificationsarray of strings

          Values may be any of: "dimension""measure""temporal""geographical"

      • masterItemsarray of objects
        Show masterItems properties
        • libIdstring

          only available for master items

        • captionstring
        • isHiddenboolean

          whether the master item is hidden in business logic

        • classificationsarray of strings

          classification defines the default role that attribute can play in an analysis

          Values may be any of: "dimension""measure""temporal""city""address""boolean""country""date""email""geographical""geoPoint""geoPolygon""hour""latitude""monetary""ordinal""percentage""postalCode""quarter""stateProvince""timestamp""week""weekDay""year""yearDay"

        • simplifiedClassificationsarray of strings

          Values may be any of: "dimension""measure""temporal""geographical"

      • isLogicalModelEnabledboolean

        if the analysis model is constructed based on a user-defined business-logic (as opposed to a default one)

      • isDefinedLogicalModelValidboolean

        set only if previous property is true, to indicate if the business logic passes validation

    • linksobject
      Show links properties
      • nextobject
        Show next properties
        • hrefstring
      • prevobject
        Show prev properties
        • hrefstring
      • selfobject
        Show self properties
        • hrefstring

400

application/json

Bad request. The payload is not formed correctly.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects

401

application/json

User is not authorized

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects

404

application/json

Not found

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects

409

application/json

Invalid Business Logic

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects

422

application/json

Unprocessable entity. The payload contains fields that are invalid, such as too long of a query.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects

500

application/json

Internal server error

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
GET /v1/apps/{appId}/insight-analyses/model
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/insight-analyses/model" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/insight-analyses/model',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app insight-analyse model <appId>

Response

{
  "data": [
    {
      "fields": [
        {
          "name": "string",
          "isHidden": false,
          "classifications": [
            "dimension"
          ],
          "simplifiedClassifications": [
            "dimension"
          ]
        }
      ],
      "masterItems": [
        {
          "libId": "string",
          "caption": "string",
          "isHidden": false,
          "classifications": [
            "dimension"
          ],
          "simplifiedClassifications": [
            "dimension"
          ]
        }
      ],
      "isLogicalModelEnabled": true,
      "isDefinedLogicalModelValid": true
    }
  ],
  "links": {
    "next": {
      "href": "http://example.com"
    },
    "prev": {
      "href": "http://example.com"
    },
    "self": {
      "href": "http://example.com"
    }
  }
}

Gets media content from file. Returns a stream of bytes containing the media file content on success, or error if file is not found.

Gets media content from file. Returns a stream of bytes containing the media file content on success, or error if file is not found.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Unique application identifier.

  • pathstring
    Required

    Path to file content.

Responses

200

application/octet-stream

OK

  • application/octet-streamstring

403

Forbidden

404

Not Found

GET /v1/apps/{appId}/media/files/{path}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/media/files/{path}" \
-H "Authorization: Bearer <API-key>" \
-o "output-file"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/media/files/{path}',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app media file get <path> \
--appId="string" \
> output-file

Stores the media content file. Returns OK if the bytes containing the media file content were successfully stored, or error in case of failure, lack of permission or file already exists on the supplied path.

Stores the media content file. Returns OK if the bytes containing the media file content were successfully stored, or error in case of failure, lack of permission or file already exists on the supplied path.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Unique application identifier.

  • pathstring
    Required

    Path to file content.

Request Body

Required

application/octet-stream

  • application/octet-streamstring

Responses

200

OK

403

Forbidden

404

Not Found

PUT /v1/apps/{appId}/media/files/{path}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/media/files/{path}" \
-X PUT \
-H "Content-type: application/octet-stream" \
-H "Authorization: Bearer <API-key>" \
--data-binary' \
          '"@/path/to/file"
const https = require('https')
  const data = JSON.stringify("string")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/media/files/{path}',
    'method': 'PUT',
    'headers': {
      'Content-type': 'application/octet-stream',
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  req.write(streamData)
  
qlik app media file update <path> \
--appId="string"

Request

"string"

Deletes a media content file or complete directory. Returns OK if the bytes containing the media file (or the complete content of a directory) were successfully deleted, or error in case of failure or lack of permission.

Deletes a media content file or complete directory. Returns OK if the bytes containing the media file (or the complete content of a directory) were successfully deleted, or error in case of failure or lack of permission.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Unique application identifier.

  • pathstring
    Required

    Path to file content.

Responses

200

OK

403

Forbidden

404

Not Found

DELETE /v1/apps/{appId}/media/files/{path}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/media/files/{path}" \
-X DELETE \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/media/files/{path}',
    'method': 'DELETE',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app media file rm <path> \
--appId="string"

Lists media content. Returns a JSON formatted array of strings describing the available media content or error if the optional path supplied is not found.

Lists media content. Returns a JSON formatted array of strings describing the available media content or error if the optional path supplied is not found.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Query Parameters

  • showstring

    Optional. List output can include files and folders in different ways:

    • Not recursive, default if show option is not supplied or incorrectly specified, results in output with files and empty directories for the path specified only.
    • Recursive(r), use ?show=r or ?show=recursive, results in a recursive output with files, all empty folders are excluded.
    • All(a), use ?show=a or ?show=all, results in a recursive output with files and empty directories.

Path Parameters

  • appIdstring
    Required

    Unique application identifier.

  • pathstring
    Required

    The path to sub folder with static content relative to the root folder. Use empty path to access the root folder.

Responses

200

application/json

OK

  • application/jsonobject
    Show application/json properties
    • dataarray of objects

      Content list items.

      Show data properties
      • idstring

        Unique content identifier.

      • linkstring

        Unique content link.

      • namestring

        Content name.

      • typestring

        Content type.

    • librarystring

      Content library name.

    • subpathstring

      Content library relative listing path. Empty in case of root listed or representing actual subpath listed.

403

Forbidden

404

Not Found

GET /v1/apps/{appId}/media/list/{path}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/media/list/{path}" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/media/list/{path}',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app media list get <path> \
--appId="string"

Response

{
  "data": [
    {
      "id": "string",
      "link": "string",
      "name": "string",
      "type": "string"
    }
  ],
  "library": "string",
  "subpath": "string"
}

Gets media content from file currently used as application thumbnail. Returns a stream of bytes containing the media file content on success, or error if file is not found. The image selected as thumbnail is only updated when application is saved.

Gets media content from file currently used as application thumbnail. Returns a stream of bytes containing the media file content on success, or error if file is not found. The image selected as thumbnail is only updated when application is saved.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Unique application identifier.

Responses

200

application/octet-stream

OK

  • application/octet-streamstring

403

Forbidden

404

Not Found

GET /v1/apps/{appId}/media/thumbnail
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/media/thumbnail" \
-H "Authorization: Bearer <API-key>" \
-o "output-file"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/media/thumbnail',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app media thumbnail \
--appId="string" \
> output-file

Sets owner on an app object. The user must be the owner of the object.

Sets owner on an app object. The user must be the owner of the object.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

  • objectIdstring
    Required

    Identifier of the object.

Request Body

Required

*/*

New owner.

  • */*object
    Show */* properties
    • ownerIdstring

Responses

200

application/json

OK

Application object attributes and user privileges.

  • application/jsonobject

    Application object attributes and user privileges.

    Show application/json properties
    • attributesobject

      App object attributes. This structure can also contain extra user-defined attributes.

      Show attributes properties
      • idstring

        The object Id.

      • namestring

        Object name.

      • ownerIdstring

        The object owner's Id.

      • approvedboolean

        True if the object is approved.

      • createdAtstring

        The date and time when the object was created.

      • updatedAtstring

        The date and time when the object was modified.

      • objectTypestring

        The type of the object.

      • descriptionstring

        Object description.

      • genericTypestring

        Can be one of: "genericObject""genericBookmark""genericMeasure""genericDimension""genericVariable"

      • publishedAtstring

        The date and time when the object was published, empty if unpublished.

    • privilegesarray of strings

      Application object privileges. Hints to the client what actions the user is allowed to perform. Could be any of:

      • read
      • create
      • update
      • delete
      • publish
      • exportdata
      • change_owner

400

Bad request

404

Not Found

POST /v1/apps/{appId}/objects/{objectId}/actions/change-owner
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/objects/{objectId}/actions/change-owner" \
-X POST \
-H "Content-type: */*" \
-H "Authorization: Bearer <API-key>" \
-d '{"ownerId":"string"}'
const https = require('https')
  const data = JSON.stringify({"ownerId":"string"})
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/objects/{objectId}/actions/change-owner',
    'method': 'POST',
    'headers': {
      'Content-type': '*/*',
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  req.write(data)
  
qlik app object change-owner \
--appId="string" \
--objectId="string" \
--ownerId="string"

Request

{
  "ownerId": "string"
}

Response

{
  "attributes": {
    "id": "string",
    "name": "string",
    "ownerId": "string",
    "approved": true,
    "createdAt": "2018-10-30T07:06:22Z",
    "updatedAt": "2018-10-30T07:06:22Z",
    "objectType": "string",
    "description": "string",
    "publishedAt": "2018-10-30T07:06:22Z"
  },
  "privileges": [
    "string"
  ]
}

Changes owner of the app.

Changes owner of the app.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

Request Body

Required

*/*

New owner.

  • */*object
    Show */* properties
    • ownerIdstring

Responses

200

application/json

OK

Application attributes and user privileges.

  • application/jsonobject

    Application attributes and user privileges.

    Show application/json properties
    • createarray of objects
    • attributesobject

      App attributes. This structure can also contain extra user-defined attributes.

      Show attributes properties
      • idstring

        The App ID.

      • namestring

        App name.

      • ownerstringDeprecated

        Deprecated. Use user api to fetch user metadata.

      • usagestring

        Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP"

      • customobject

        Contains dynamic JSON data specified by the client.

      • ownerIdstring

        Identifier of the app owner.

      • encryptedboolean

        If set to true, the app is encrypted.

      • publishedboolean

        True if the app is published on-prem, distributed in QCS, false if not.

      • thumbnailstring

        App thumbnail.

      • createdDatestring

        The date and time when the app was created.

      • descriptionstring

        App description.

      • originAppIdstring

        The Origin App ID for published apps.

      • publishTimestring

        The date and time when the app was published, empty if unpublished.

      • dynamicColorstring

        The dynamic color of the app.

      • modifiedDatestring

        The date and time when the app was modified.

      • lastReloadTimestring

        Date and time of the last reload of the app.

      • hasSectionAccessboolean

        If set to true, the app has section access configured,

      • isDirectQueryModeboolean

        True if the app is a Direct Query app, false if not

    • privilegesarray of strings

      Application privileges. Hints to the client what actions the user is allowed to perform. Could be any of:

      • read
      • create
      • update
      • delete
      • reload
      • import
      • publish
      • duplicate
      • export
      • exportdata
      • change_owner
      • change_space

403

Forbidden

404

Not Found

PUT /v1/apps/{appId}/owner
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/owner" \
-X PUT \
-H "Content-type: */*" \
-H "Authorization: Bearer <API-key>" \
-d '{"ownerId":"string"}'
const https = require('https')
  const data = JSON.stringify({"ownerId":"string"})
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/owner',
    'method': 'PUT',
    'headers': {
      'Content-type': '*/*',
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  req.write(data)
  
qlik app owner <appId> \
--ownerId="string"

Request

{
  "ownerId": "string"
}

Response

{
  "create": [
    {}
  ],
  "attributes": {
    "id": "string",
    "name": "string",
    "owner": "string",
    "custom": {},
    "ownerId": "string",
    "encrypted": true,
    "published": true,
    "thumbnail": "string",
    "createdDate": "2018-10-30T07:06:22Z",
    "description": "string",
    "originAppId": "string",
    "publishTime": "2018-10-30T07:06:22Z",
    "dynamicColor": "string",
    "modifiedDate": "2018-10-30T07:06:22Z",
    "lastReloadTime": "2018-10-30T07:06:22Z",
    "hasSectionAccess": true,
    "isDirectQueryMode": true
  },
  "privileges": [
    "string"
  ]
}

Publishes a specific app to a managed space.

Publishes a specific app to a managed space.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

Request Body

Required

*/*

Publish information for the app.

  • */*object
    Show */* properties
    • datastring

      Can be one of: "source""target"

    • moveAppboolean

      The original is moved instead of copied. The current published state of all objects is kept.

    • spaceIdstring

      The managed space ID where the app will be published.

    • attributesobject
      Show attributes properties
      • namestring

        The name (title) of the application.

      • descriptionstring

        The description of the application.

    • originAppIdstring

      If app is moved, originAppId needs to be provided.

Responses

200

application/json

OK

Application attributes and user privileges.

  • application/jsonobject

    Application attributes and user privileges.

    Show application/json properties
    • createarray of objects
    • attributesobject

      App attributes. This structure can also contain extra user-defined attributes.

      Show attributes properties
      • idstring

        The App ID.

      • namestring

        App name.

      • ownerstringDeprecated

        Deprecated. Use user api to fetch user metadata.

      • usagestring

        Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP"

      • customobject

        Contains dynamic JSON data specified by the client.

      • ownerIdstring

        Identifier of the app owner.

      • encryptedboolean

        If set to true, the app is encrypted.

      • publishedboolean

        True if the app is published on-prem, distributed in QCS, false if not.

      • thumbnailstring

        App thumbnail.

      • createdDatestring

        The date and time when the app was created.

      • descriptionstring

        App description.

      • originAppIdstring

        The Origin App ID for published apps.

      • publishTimestring

        The date and time when the app was published, empty if unpublished.

      • dynamicColorstring

        The dynamic color of the app.

      • modifiedDatestring

        The date and time when the app was modified.

      • lastReloadTimestring

        Date and time of the last reload of the app.

      • hasSectionAccessboolean

        If set to true, the app has section access configured,

      • isDirectQueryModeboolean

        True if the app is a Direct Query app, false if not

    • privilegesarray of strings

      Application privileges. Hints to the client what actions the user is allowed to perform. Could be any of:

      • read
      • create
      • update
      • delete
      • reload
      • import
      • publish
      • duplicate
      • export
      • exportdata
      • change_owner
      • change_space
POST /v1/apps/{appId}/publish
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/publish" \
-X POST \
-H "Content-type: */*" \
-H "Authorization: Bearer <API-key>" \
-d '{"moveApp":false,"spaceId":"string","attributes":{"name":"string","description":"string"},"originAppId":"string"}'
const https = require('https')
  const data = JSON.stringify({"moveApp":false,"spaceId":"string","attributes":{"name":"string","description":"string"},"originAppId":"string"})
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/publish',
    'method': 'POST',
    'headers': {
      'Content-type': '*/*',
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  req.write(data)
  
qlik app publish create <appId> \
--attributes-description="string" \
--attributes-name="string" \
--originAppId="string" \
--spaceId="string"

Request

{
  "moveApp": false,
  "spaceId": "string",
  "attributes": {
    "name": "string",
    "description": "string"
  },
  "originAppId": "string"
}

Response

{
  "create": [
    {}
  ],
  "attributes": {
    "id": "string",
    "name": "string",
    "owner": "string",
    "custom": {},
    "ownerId": "string",
    "encrypted": true,
    "published": true,
    "thumbnail": "string",
    "createdDate": "2018-10-30T07:06:22Z",
    "description": "string",
    "originAppId": "string",
    "publishTime": "2018-10-30T07:06:22Z",
    "dynamicColor": "string",
    "modifiedDate": "2018-10-30T07:06:22Z",
    "lastReloadTime": "2018-10-30T07:06:22Z",
    "hasSectionAccess": true,
    "isDirectQueryMode": true
  },
  "privileges": [
    "string"
  ]
}

Republishes a published app to a managed space.

Republishes a published app to a managed space.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

Request Body

Required

*/*

Republish information for the app.

  • */*object
    Show */* properties
    • datastring

      Can be one of: "source""target"

    • targetIdstring

      The target ID to be republished.

    • attributesobject
      Show attributes properties
      • namestring

        The name (title) of the application.

      • descriptionstring

        The description of the application.

    • checkOriginAppIdboolean

      Validate that source app is same as originally published.

Responses

200

application/json

OK

Application attributes and user privileges.

  • application/jsonobject

    Application attributes and user privileges.

    Show application/json properties
    • createarray of objects
    • attributesobject

      App attributes. This structure can also contain extra user-defined attributes.

      Show attributes properties
      • idstring

        The App ID.

      • namestring

        App name.

      • ownerstringDeprecated

        Deprecated. Use user api to fetch user metadata.

      • usagestring

        Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP"

      • customobject

        Contains dynamic JSON data specified by the client.

      • ownerIdstring

        Identifier of the app owner.

      • encryptedboolean

        If set to true, the app is encrypted.

      • publishedboolean

        True if the app is published on-prem, distributed in QCS, false if not.

      • thumbnailstring

        App thumbnail.

      • createdDatestring

        The date and time when the app was created.

      • descriptionstring

        App description.

      • originAppIdstring

        The Origin App ID for published apps.

      • publishTimestring

        The date and time when the app was published, empty if unpublished.

      • dynamicColorstring

        The dynamic color of the app.

      • modifiedDatestring

        The date and time when the app was modified.

      • lastReloadTimestring

        Date and time of the last reload of the app.

      • hasSectionAccessboolean

        If set to true, the app has section access configured,

      • isDirectQueryModeboolean

        True if the app is a Direct Query app, false if not

    • privilegesarray of strings

      Application privileges. Hints to the client what actions the user is allowed to perform. Could be any of:

      • read
      • create
      • update
      • delete
      • reload
      • import
      • publish
      • duplicate
      • export
      • exportdata
      • change_owner
      • change_space
PUT /v1/apps/{appId}/publish
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/publish" \
-X PUT \
-H "Content-type: */*" \
-H "Authorization: Bearer <API-key>" \
-d '{"targetId":"string","attributes":{"name":"string","description":"string"},"checkOriginAppId":true}'
const https = require('https')
  const data = JSON.stringify({"targetId":"string","attributes":{"name":"string","description":"string"},"checkOriginAppId":true})
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/publish',
    'method': 'PUT',
    'headers': {
      'Content-type': '*/*',
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  req.write(data)
  
qlik app publish update <appId> \
--attributes-description="string" \
--attributes-name="string" \
--checkOriginAppId=true \
--targetId="string"

Request

{
  "targetId": "string",
  "attributes": {
    "name": "string",
    "description": "string"
  },
  "checkOriginAppId": true
}

Response

{
  "create": [
    {}
  ],
  "attributes": {
    "id": "string",
    "name": "string",
    "owner": "string",
    "custom": {},
    "ownerId": "string",
    "encrypted": true,
    "published": true,
    "thumbnail": "string",
    "createdDate": "2018-10-30T07:06:22Z",
    "description": "string",
    "originAppId": "string",
    "publishTime": "2018-10-30T07:06:22Z",
    "dynamicColor": "string",
    "modifiedDate": "2018-10-30T07:06:22Z",
    "lastReloadTime": "2018-10-30T07:06:22Z",
    "hasSectionAccess": true,
    "isDirectQueryMode": true
  },
  "privileges": [
    "string"
  ]
}

Retrieves the metadata about all script logs stored for an app. Returns an array of ScriptLogMeta objects.

Retrieves the metadata about all script logs stored for an app. Returns an array of ScriptLogMeta objects.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

Responses

200

application/json

OK

  • application/jsonobject
    Show application/json properties
    • dataarray of objects

      Array of scriptLogMeta.

      Show data properties
      • linksobject
        Show links properties
        • logstring

          Provides a link to download the log file.

      • endTimestring

        Time when reload ended.

      • successboolean

        True if the reload was successful.

      • durationinteger

        Duration of reload (ms).

      • reloadIdstring

        Reload identifier.

GET /v1/apps/{appId}/reloads/logs
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/reloads/logs" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/reloads/logs',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
This API is not included yet in qlik-cli

Response

{
  "data": [
    {
      "links": {
        "log": "string"
      },
      "endTime": "2018-10-30T07:06:22Z",
      "success": true,
      "duration": 42,
      "reloadId": "string"
    }
  ]
}

Retrieves the log of a specific reload. Returns the log as "text/plain; charset=UTF-8".

Retrieves the log of a specific reload. Returns the log as "text/plain; charset=UTF-8".

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

  • reloadIdstring
    Required

    Identifier of the reload.

Responses

200

application/octet-stream

OK

  • application/octet-streamstring
GET /v1/apps/{appId}/reloads/logs/{reloadId}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/reloads/logs/{reloadId}" \
-H "Authorization: Bearer <API-key>" \
-o "output-file"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/reloads/logs/{reloadId}',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
This API is not included yet in qlik-cli

Retrieves the app reload metadata list. Reload metadata contains reload information, including reload id, duration, endtime and lineage load info.

Retrieves the app reload metadata list. Reload metadata contains reload information, including reload id, duration, endtime and lineage load info.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Query Parameters

  • includeSkipStoreReloadsboolean

    Include metadata for reloads ran with SkipStore flag set to true. Default: false

  • limitstring

    Maximum number of records to return from this request. Default: 100

Path Parameters

  • appIdstring
    Required

    Identifier of the app

  • reloadIdstring
    Required

    Identifier of the reload. Use empty reloadId to get all reloads.

Responses

200

application/json

OK

  • application/jsonobject
    Show application/json properties
    • dataarray of objects

      Array of ReloadMeta.

      Show data properties
      • endTimestring

        Time when reload ended.

      • successboolean

        true if the reload was successful.

      • durationinteger

        Duration of reload (ms).

      • reloadIdstring

        Reload identifier.

      • rowLimitinteger

        If greater than or equal 0, defines max number of rows loaded from a data source.

      • appDbHashstring

        A Base64-encoded hash value of the new app database.

      • skipStoreboolean

        Set to true to skip Store statements. The default value is false.

      • storeHashstring

        A Base64-encoded hash value of all fields stored via the store statements.

      • statementsarray of objects

        List of external loaded or stored statements.

        Show statements properties
        • qristring

          Resource Identifier.

        • typestring

          Type of statement, e.g. Store/Load.

        • labelstring

          Label of the resource level node in lineage.

        • dataSizeinteger

          Data loaded from the network (bytes).

        • durationinteger

          Duration of data generation (ms).

        • nbrOfRowsinteger

          Number of rows loaded.

        • tableNamestring

          Name of the source table in lineage.

        • connectionstring

          The connecton name.

        • nbrOfFieldsinteger

          Number of fields loaded.

        • connectionIdstring

          Connection ID.

        • partialReloadOperationstring

          Partial load operation. e.g. add/replace/update/merge. n/a when not in partial load mode.

      • accessDbHashstring

        A Base64-encoded hash value of the new section access database.

      • includeFilesarray of objects

        Files brought into the script via include/mustInclude macros.

        Show includeFiles properties
        • qristring

          File QRI resource identifier.

        • pathstring

          File location within the connection.

        • connectionstring

          The connection name.

      • loadFilesBytesinteger
      • isPartialReloadboolean

        True if the reload is a partial reload.

      • storeFilesBytesinteger
      • loadExternalBytesinteger
      • loadDataFilesBytesinteger
      • storeDataFilesBytesinteger
GET /v1/apps/{appId}/reloads/metadata/{reloadId}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/reloads/metadata/{reloadId}" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/reloads/metadata/{reloadId}',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
This API is not included yet in qlik-cli

Response

{
  "data": [
    {
      "endTime": "2018-10-30T07:06:22Z",
      "success": true,
      "duration": 42,
      "reloadId": "string",
      "rowLimit": -1,
      "appDbHash": "string",
      "skipStore": false,
      "storeHash": "string",
      "statements": [
        {
          "qri": "string",
          "type": "string",
          "label": "string",
          "dataSize": 42,
          "duration": 42,
          "nbrOfRows": 42,
          "tableName": "string",
          "connection": "string",
          "nbrOfFields": 42,
          "connectionId": "string",
          "partialReloadOperation": "string"
        }
      ],
      "accessDbHash": "string",
      "includeFiles": [
        {
          "qri": "string",
          "path": "string",
          "connection": "string"
        }
      ],
      "loadFilesBytes": 42,
      "isPartialReload": true,
      "storeFilesBytes": 42,
      "loadExternalBytes": 42,
      "loadDataFilesBytes": 42,
      "storeDataFilesBytes": 42
    }
  ]
}

Get the filter list

List all filters that are present in the given app. Filters allow to reduce the app data visible in a report output. Each filter can contain definitions on one or multiple fields.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalbuild

Query Parameters

  • filterTypesarray of strings
    Required

    The filter type (REP, SUB). REP stands for report bookmark, SUB for subscription bookmark.

    Values may be any of: "REP""SUB"

  • filterstring

    The advanced filtering to use for the query. Refer to RFC 7644 for the syntax. Cannot be combined with any of the fields marked as deprecated. All conditional statements within this query parameter are case insensitive. The following fields support the co (contains) operator: name, description The following fields support the eq (equals) operator: ownerId Example: (name co "query1" or description co "query2") and ownerId eq "123"

  • limitinteger

    Limit the returned result set

  • pagestring

    If present, the cursor that starts the page of data that is returned.

  • sortarray of strings

    Sorting parameters.

    Values may be any of: "+ownerId""-ownerId""-name""+name""+description""-description""+createdAt""-createdAt""+updatedAt""-updatedAt"

Path Parameters

  • appIdstring
    Required

    Qlik Sense app identifier

Responses

200

application/json

The filters have been successfully returned.

  • application/jsonobject
    Show application/json properties
    • dataarray of objects
      Required

      a list of filters containing all the filters properties (like name,description...) except the filter definition (like FilterV1_0)

      Show data properties
      • idstring

        The filter ID (bookmarkId)

      • namestring

        The filter name.

      • ownerIdstring

        The user that owns the filter, if missing the same as the request user.

      • createdAtstring
      • updatedAtstring
      • filterTypestring

        Can be one of: "REP""SUB"

      • filterV1_0object
        Show filterV1_0 properties
        • variablesarray of objects

          The filter variables.

          Show variables properties
          • namestring
            Required
          • valuestring
          • evaluateboolean
        • fieldsByStateobject

          Map of fields to apply by state. Maximum number of states allowed is 125. Maximum number of fields allowed is 125 and maximum number of overall field values allowed is 150000.

      • descriptionstring

        The filter description.

      • filterVersionstring

        Can be one of: "filter-1.0""filter-2.0"

    • linksobject
      Required
      Show links properties
      • nextobject
        Required
        Show next properties
        • hrefstring
      • prevobject
        Required
        Show prev properties
        • hrefstring
      • selfobject
        Required
        Show self properties
        • hrefstring

400

application/json

Bad request. Malformed syntax, errors in params.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

      Error occured during the Filter creation.

      Show errors properties
      • codestring
        Required

        The unique code for the error

        • "REP-400000" Bad request. The server could not understand the request due to invalid syntax.
        • "REP-400008" Selections error.
        • "REP-400015" Bad request in enigma request. The patch value has invalid JSON format.
        • "REP-401000" Unauthorized. The client must authenticate itself to get the requested response.
        • "REP-401001" Unauthorized, bad JWT.
        • "REP-403000" Forbidden. The client does not have access rights to the content.
        • "REP-403001" App forbidden, the user does not have read permission on the app.
        • "REP-403002" Chart type not supported.
        • "REP-404000" Not found. The server can not find the requested resource.
        • "REP-409043" Filter name conflict. The filter name must be unique.
        • "REP-429000" Too many request. The user has sent too many requests in a given amount of time ("rate limiting").
        • "REP-429012" Exceeded max session tenant quota. A tenant has opened too many different sessions at the same time.
        • "REP-429016" Exceeded max session tenant quota per day.
        • "REP-500000" Fail to resolve resource.
        • "REP-503005" Engine unavailable, qix-sessions error no engines available.
        • "REP-503013" Session unavailable. The engine session used to create the report is unavailable.
        • "REP-504042" Context deadline exceeded applying selections of the Filter.
      • titlestring
        Required

        A summary in english explaining what went wrong.

401

application/json

Unauthorized, JWT invalid or not provided.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

403

application/json

Forbidden, user lacks sufficient permissions to access the resource.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

404

application/json

Not found.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

429

application/json

Too many request. Indicates the user has sent too many requests in a given amount of time, aka "rate limiting".

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

500

application/json

Internal server error.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required
GET /v1/apps/{appId}/report-filters
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/report-filters" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/report-filters',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
This API is not included yet in qlik-cli

Response

{
  "data": [
    {
      "id": "c61841ac-7b35-4434-aa74-4421f10fc68e",
      "name": "Filter 1",
      "ownerId": "649173fbc8ffcfde27412b99",
      "createdAt": "2023-08-09T08:19:37.577Z",
      "updatedAt": "2023-08-09T08:19:37.577Z",
      "filterType": "REP",
      "filterV1_0": {
        "fieldsByState": {
          "$": [
            {
              "name": "Country",
              "values": [
                {
                  "valueType": "string",
                  "valueAsText": "1-Argentina"
                },
                {
                  "valueType": "string",
                  "valueAsText": "4-Brazil"
                }
              ],
              "overrideValues": false,
              "selectExcluded": false
            },
            {
              "name": "Order number",
              "values": [
                {
                  "valueType": "number",
                  "valueAsText": "61300",
                  "valueAsNumber": 61300
                }
              ],
              "overrideValues": false,
              "selectExcluded": false
            }
          ]
        }
      },
      "description": "This is the filter description",
      "filterVersion": "filter-1.0"
    }
  ],
  "links": {
    "next": {
      "href": "https://tenant.qlik-cloud.com:443/api/v1/apps/816e23e1-03d2-446b-8721-cdee6b5e59cf/report-filters?filter=&filterTypes=REP&filterTypes=REP&limit=20&page=0&sort=%2Bname"
    },
    "prev": {
      "href": "https://tenant.qlik-cloud.com:443/api/v1/apps/816e23e1-03d2-446b-8721-cdee6b5e59cf/report-filters?filter=&filterTypes=REP&filterTypes=REP&limit=20&page=0&sort=%2Bname"
    },
    "self": {
      "href": "https://tenant.qlik-cloud.com:443/api/v1/apps/816e23e1-03d2-446b-8721-cdee6b5e59cf/report-filters?filter=&filterTypes=REP&filterTypes=REP&limit=20&page=0&sort=%2Bname"
    }
  }
}

Create a new filter.

Creates a new report filter which is used to re-apply selections, variables, patches to an engine session.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalbuild

Path Parameters

  • appIdstring
    Required

    Qlik Sense app identifier

Request Body

Required

application/json

The filter definition.

  • application/jsonobject
    Show application/json properties
    • namestring
      Required

      The filter name.

    • appIdstring

      The App ID.

    • ownerIdstring

      The user that owns the filter, if missing the same as the request user.

    • filterTypestring
      Required

      Can be one of: "REP""SUB"

    • filterV1_0object
      Show filterV1_0 properties
      • variablesarray of objects
      • fieldsByStateobject

        Map of fields to apply by state. Maximum number of states allowed is 125. Maximum number of fields allowed is 125 and maximum number of overall field values allowed is 150000.

    • descriptionstring

      The filter description.

    • filterVersionstring
      Required

      Can be one of: "filter-1.0""filter-2.0"

Responses

201

application/json

The filter has been successfully created.

  • application/jsonobject
    Show application/json properties
    • idstring

      The filter ID (bookmarkId).

    • namestring

      The filter name.

    • ownerIdstring

      The user that owns the filter, if missing the same as the request user.

    • createdAtstring
    • updatedAtstring
    • filterTypestring

      Can be one of: "REP""SUB"

    • filterV1_0object
      Show filterV1_0 properties
      • variablesarray of objects
      • fieldsByStateobject

        Map of fields to apply by state. Maximum number of states allowed is 125. Maximum number of fields allowed is 125 and maximum number of overall field values allowed is 150000.

    • descriptionstring

      The filter description.

    • filterVersionstring

      Can be one of: "filter-1.0""filter-2.0"

400

application/json

Bad request, malformed syntax, errors in params or the report request is not valid.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

401

application/json

Unauthorized, JWT invalid or not provided.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

403

application/json

Forbidden, user lacks sufficient permissions to access the resource.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

404

application/json

Not found.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

409

application/json

Filter name conflict.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

429

application/json

Too many request. Indicates the user has sent too many requests in a given amount of time, aka "rate limiting".

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

500

application/json

Internal server error.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required
POST /v1/apps/{appId}/report-filters
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/report-filters" \
-X POST \
-H "Content-type: application/json" \
-H "Authorization: Bearer <API-key>" \
-d '{"name":"Filter sample","filterType":"REP","filterV1_0":{"fieldsByState":{"$":[{"name":"Country","values":[{"valueType":"string","valueAsText":"1-Argentina"},{"valueType":"string","valueAsText":"4-Brazil"}],"overrideValues":false,"selectExcluded":false},{"name":"Order number","values":[{"valueType":"number","valueAsText":"61300","valueAsNumber":61300}],"overrideValues":false,"selectExcluded":false}]}},"description":"this is a filter sample","filterVersion":"filter-1.0"}'
const https = require('https')
  const data = JSON.stringify({"name":"Filter sample","filterType":"REP","filterV1_0":{"fieldsByState":{"$":[{"name":"Country","values":[{"valueType":"string","valueAsText":"1-Argentina"},{"valueType":"string","valueAsText":"4-Brazil"}],"overrideValues":false,"selectExcluded":false},{"name":"Order number","values":[{"valueType":"number","valueAsText":"61300","valueAsNumber":61300}],"overrideValues":false,"selectExcluded":false}]}},"description":"this is a filter sample","filterVersion":"filter-1.0"})
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/report-filters',
    'method': 'POST',
    'headers': {
      'Content-type': 'application/json',
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  req.write(data)
  
This API is not included yet in qlik-cli

Request

{
  "name": "Filter sample",
  "filterType": "REP",
  "filterV1_0": {
    "fieldsByState": {
      "$": [
        {
          "name": "Country",
          "values": [
            {
              "valueType": "string",
              "valueAsText": "1-Argentina"
            },
            {
              "valueType": "string",
              "valueAsText": "4-Brazil"
            }
          ],
          "overrideValues": false,
          "selectExcluded": false
        },
        {
          "name": "Order number",
          "values": [
            {
              "valueType": "number",
              "valueAsText": "61300",
              "valueAsNumber": 61300
            }
          ],
          "overrideValues": false,
          "selectExcluded": false
        }
      ]
    }
  },
  "description": "this is a filter sample",
  "filterVersion": "filter-1.0"
}

Response

{
  "id": "c61841ac-7b35-4434-aa74-4421f10fc68e",
  "name": "Filter 1",
  "ownerId": "649173fbc8ffcfde27412b99",
  "createdAt": "2023-08-09T08:19:37.577Z",
  "updatedAt": "2023-08-09T08:19:37.577Z",
  "filterType": "REP",
  "filterV1_0": {
    "fieldsByState": {
      "$": [
        {
          "name": "Country",
          "values": [
            {
              "valueType": "string",
              "valueAsText": "1-Argentina"
            },
            {
              "valueType": "string",
              "valueAsText": "4-Brazil"
            }
          ],
          "overrideValues": false,
          "selectExcluded": false
        },
        {
          "name": "Order number",
          "values": [
            {
              "valueType": "number",
              "valueAsText": "61300",
              "valueAsNumber": 61300
            }
          ],
          "overrideValues": false,
          "selectExcluded": false
        }
      ]
    }
  },
  "description": "This is the filter description",
  "filterVersion": "filter-1.0"
}

Get a filter

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalbuild

Path Parameters

  • appIdstring
    Required

    Qlik Sense app identifier

  • idstring
    Required

    The filter id identifier (bookmarkId).

Responses

200

application/json

The filter has been successfully returned.

  • application/jsonobject
    Show application/json properties
    • idstring

      The filter ID (bookmarkId).

    • namestring

      The filter name.

    • ownerIdstring

      The user that owns the filter, if missing the same as the request user.

    • createdAtstring
    • updatedAtstring
    • filterTypestring

      Can be one of: "REP""SUB"

    • filterV1_0object
      Show filterV1_0 properties
      • variablesarray of objects
      • fieldsByStateobject

        Map of fields to apply by state. Maximum number of states allowed is 125. Maximum number of fields allowed is 125 and maximum number of overall field values allowed is 150000.

    • descriptionstring

      The filter description.

    • filterVersionstring

      Can be one of: "filter-1.0""filter-2.0"

400

application/json

Bad request. Malformed syntax, errors in params.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

401

application/json

Unauthorized, JWT invalid or not provided.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

403

application/json

Forbidden, user lacks sufficient permissions to access the resource.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

404

application/json

Not found.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

429

application/json

Too many request. Indicates the user has sent too many requests in a given amount of time, aka "rate limiting".

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

500

application/json

Internal server error.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required
GET /v1/apps/{appId}/report-filters/{id}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/report-filters/{id}" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/report-filters/{id}',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
This API is not included yet in qlik-cli

Response

{
  "id": "c61841ac-7b35-4434-aa74-4421f10fc68e",
  "name": "Filter 1",
  "ownerId": "649173fbc8ffcfde27412b99",
  "createdAt": "2023-08-09T08:19:37.577Z",
  "updatedAt": "2023-08-09T08:19:37.577Z",
  "filterType": "REP",
  "filterV1_0": {
    "fieldsByState": {
      "$": [
        {
          "name": "Country",
          "values": [
            {
              "valueType": "string",
              "valueAsText": "1-Argentina"
            },
            {
              "valueType": "string",
              "valueAsText": "4-Brazil"
            }
          ],
          "overrideValues": false,
          "selectExcluded": false
        },
        {
          "name": "Order number",
          "values": [
            {
              "valueType": "number",
              "valueAsText": "61300",
              "valueAsNumber": 61300
            }
          ],
          "overrideValues": false,
          "selectExcluded": false
        }
      ]
    }
  },
  "description": "This is the filter description",
  "filterVersion": "filter-1.0"
}

Update a filter

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalbuild

Path Parameters

  • appIdstring
    Required

    Qlik Sense app identifier

  • idstring
    Required

    The filter id identifier (bookmarkId).

Request Body

Required

application/json

The filter definition that will replace the existing one.

  • application/jsonarray of objects
    Show application/json properties
    • opstring
      Required

      operation (replace).

      Can be one of: "replace"

    • pathstring
      Required

      A JSON Pointer path (/).

      Can be one of: "/filter"

    • valueobject
      Required

      The value to be used for this operation. The properties that cannot be patched include id, filterType, appId

      Show value properties
      • Filterobject
        Show Filter properties
        • namestring

          The filter name.

        • ownerIdstring

          The user that owns the filter, if missing the same as the request user.

        • filterV1_0object
          Show filterV1_0 properties
          • variablesarray of objects
          • fieldsByStateobject

            Map of fields to apply by state. Maximum number of states allowed is 125. Maximum number of fields allowed is 125 and maximum number of overall field values allowed is 150000.

        • descriptionstring

          The filter description.

        • filterVersionstring

          Can be one of: "filter-1.0""filter-2.0"

Responses

204

The filter has been successfully patched.

400

application/json

Bad request. Malformed syntax, errors in params.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

401

application/json

Unauthorized, JWT invalid or not provided.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

403

application/json

Forbidden, user lacks sufficient permissions to access the resource.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

404

application/json

Not found.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

409

application/json

Filter name conflict. A filter with the same name already exists.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

429

application/json

Too many request. Indicates the user has sent too many requests in a given amount of time, aka "rate limiting".

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

500

application/json

Internal server error.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required
PATCH /v1/apps/{appId}/report-filters/{id}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/report-filters/{id}" \
-X PATCH \
-H "Content-type: application/json" \
-H "Authorization: Bearer <API-key>" \
-d '[{"op":"replace","path":"/filter","value":{"Filter":{"name":"Filter 1","ownerId":"649173fbc8ffcfde27412b99","filterV1_0":{"fieldsByState":{"$":[{"name":"Country","values":[{"valueType":"string","valueAsText":"1-Argentina"},{"valueType":"string","valueAsText":"4-Brazil"}],"overrideValues":false,"selectExcluded":false},{"name":"Order number","values":[{"valueType":"number","valueAsText":"61300","valueAsNumber":61300}],"overrideValues":false,"selectExcluded":false}]}},"description":"This is the filter description","filterVersion":"filter-1.0"}}}]'
const https = require('https')
  const data = JSON.stringify([{"op":"replace","path":"/filter","value":{"Filter":{"name":"Filter 1","ownerId":"649173fbc8ffcfde27412b99","filterV1_0":{"fieldsByState":{"$":[{"name":"Country","values":[{"valueType":"string","valueAsText":"1-Argentina"},{"valueType":"string","valueAsText":"4-Brazil"}],"overrideValues":false,"selectExcluded":false},{"name":"Order number","values":[{"valueType":"number","valueAsText":"61300","valueAsNumber":61300}],"overrideValues":false,"selectExcluded":false}]}},"description":"This is the filter description","filterVersion":"filter-1.0"}}}])
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/report-filters/{id}',
    'method': 'PATCH',
    'headers': {
      'Content-type': 'application/json',
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  req.write(data)
  
This API is not included yet in qlik-cli

Request

[
  {
    "op": "replace",
    "path": "/filter",
    "value": {
      "Filter": {
        "name": "Filter 1",
        "ownerId": "649173fbc8ffcfde27412b99",
        "filterV1_0": {
          "fieldsByState": {
            "$": [
              {
                "name": "Country",
                "values": [
                  {
                    "valueType": "string",
                    "valueAsText": "1-Argentina"
                  },
                  {
                    "valueType": "string",
                    "valueAsText": "4-Brazil"
                  }
                ],
                "overrideValues": false,
                "selectExcluded": false
              },
              {
                "name": "Order number",
                "values": [
                  {
                    "valueType": "number",
                    "valueAsText": "61300",
                    "valueAsNumber": 61300
                  }
                ],
                "overrideValues": false,
                "selectExcluded": false
              }
            ]
          }
        },
        "description": "This is the filter description",
        "filterVersion": "filter-1.0"
      }
    }
  }
]

Delete a filter

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalbuild

Path Parameters

  • appIdstring
    Required

    Qlik Sense app identifier

  • idstring
    Required

    The filter id identifier (bookmarkId).

Responses

204

The filter has been successfully deleted.

400

application/json

Bad request. Malformed syntax, errors in params.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

401

application/json

Unauthorized, JWT invalid or not provided.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

403

application/json

Forbidden, user lacks sufficient permissions to access the resource.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

404

application/json

Not found.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

429

application/json

Too many request. Indicates the user has sent too many requests in a given amount of time, aka "rate limiting".

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

500

application/json

Internal server error.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required
DELETE /v1/apps/{appId}/report-filters/{id}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/report-filters/{id}" \
-X DELETE \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/report-filters/{id}',
    'method': 'DELETE',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
This API is not included yet in qlik-cli

Get the number of filters for the given app and filter types

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalbuild

Query Parameters

  • filterTypesarray of strings
    Required

    The filter type (REP, SUB). REP stands for report bookmark, SUB for subscription bookmark.

    Values may be any of: "REP""SUB"

Path Parameters

  • appIdstring
    Required

    Qlik Sense app identifier

Responses

200

application/json

The count of filters.

  • application/jsonobject
    Show application/json properties
    • totalnumber

      The total number of filters.

400

application/json

Bad request. Malformed syntax, errors in params.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

401

application/json

Unauthorized, JWT invalid or not provided.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

403

application/json

Forbidden, user lacks sufficient permissions to access the resource.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

404

application/json

Not found.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

429

application/json

Too many request. Indicates the user has sent too many requests in a given amount of time, aka "rate limiting".

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required

500

application/json

Internal server error.

Errors occured during the Filter creation.

  • application/jsonobject

    Errors occured during the Filter creation.

    Show application/json properties
    • errorsarray of objects
      Required
GET /v1/apps/{appId}/report-filters/actions/count
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/report-filters/actions/count" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/report-filters/actions/count',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
This API is not included yet in qlik-cli

Response

{
  "total": 20
}

Retrieves the script history for an app. Returns information about the saved versions of the script in a list sorted with latest first.

Retrieves the script history for an app. Returns information about the saved versions of the script in a list sorted with latest first.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Query Parameters

  • filterstring

    A scim filter expression defining which script versions should be retrieved. Filterable fields are:

    • ScriptId
    • ModifiedTime
    • ModifierId
  • limitstring

    Maximum number of records to return from this request.

  • pagestring

    Opaque definition of which page of the result set to return. Returned from a previous call using the same filter. Not yet supported.

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

Responses

200

application/json

OK

  • application/jsonobject
    Show application/json properties
    • linksobject
      Show links properties
      • nextobject
        Show next properties
        • hrefstring
      • prevobject
        Show prev properties
        • hrefstring
    • scriptsarray of objects

      Script versions metadata.

      Show scripts properties
      • sizeinteger

        Script size.

      • scriptIdstring

        Script id.

      • modifierIdstring

        User last modifying script version.

      • modifiedTimestring

        Script version last modification time.

      • versionMessagestring

        Description of this script version

GET /v1/apps/{appId}/scripts
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/scripts" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/scripts',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app script version ls \
--appId="string"

Response

{
  "links": {
    "next": {
      "href": "string"
    },
    "prev": {
      "href": "string"
    }
  },
  "scripts": [
    {
      "size": 42,
      "scriptId": "string",
      "modifierId": "string",
      "modifiedTime": "string",
      "versionMessage": "string"
    }
  ]
}

Sets script for an app.

Sets script for an app.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

Request Body

Required

*/*

The script to set.

  • */*object
    Show */* properties
    • scriptstring

      Script text.

    • versionMessagestring

      Description of this script version

Responses

200

OK

POST /v1/apps/{appId}/scripts
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/scripts" \
-X POST \
-H "Content-type: */*" \
-H "Authorization: Bearer <API-key>" \
-d '{"script":"string","versionMessage":"string"}'
const https = require('https')
  const data = JSON.stringify({"script":"string","versionMessage":"string"})
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/scripts',
    'method': 'POST',
    'headers': {
      'Content-type': '*/*',
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  req.write(data)
  
qlik app script version create \
--appId="string" \
--script="string" \
--versionMessage="string"

Request

{
  "script": "string",
  "versionMessage": "string"
}

Retrieves a version of the script for an app. Returns the script text.

Retrieves a version of the script for an app. Returns the script text.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

  • idstring
    Required

    Identifier of the script version, or 'current' for retrieving the current version.

Responses

200

application/json

OK

  • application/jsonobject
    Show application/json properties
    • scriptstring

      Script text.

    • versionMessagestring

      Description of this script version

GET /v1/apps/{appId}/scripts/{id}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/scripts/{id}" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/scripts/{id}',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
This API is not included yet in qlik-cli

Response

{
  "script": "string",
  "versionMessage": "string"
}

Updates a specific version of the script for an app.

Updates a specific version of the script for an app.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

  • idstring
    Required

    Identifier of the script version.

Request Body

Required

*/*

Array of patches for the object ScriptVersion.

Patches have limited functionality for this object. Only /versionMessage can be modified using operations add, remove and replace.
  • */*array of objects
    Show */* properties
    • Opstring

      Can be one of: "add""remove""replace"

    • Pathstring

      Path to the property to add, remove or replace.

    • Valuestring

      This parameter is not used in a remove operation. Corresponds to the value of the property to add or to the new value of the property to update. Examples: "false", "2", ""New title""

Responses

200

OK

PATCH /v1/apps/{appId}/scripts/{id}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/scripts/{id}" \
-X PATCH \
-H "Content-type: */*" \
-H "Authorization: Bearer <API-key>" \
-d '[{"Path":"string","Value":"string"}]'
const https = require('https')
  const data = JSON.stringify([{"Path":"string","Value":"string"}])
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/scripts/{id}',
    'method': 'PATCH',
    'headers': {
      'Content-type': '*/*',
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  req.write(data)
  
This API is not included yet in qlik-cli

Request

[
  {
    "Path": "string",
    "Value": "string"
  }
]

Deletes a specific version of the script for an app. Fails if the supplied id is the current version.

Deletes a specific version of the script for an app. Fails if the supplied id is the current version.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

  • idstring
    Required

    Identifier of the script version

Responses

200

OK

DELETE /v1/apps/{appId}/scripts/{id}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/scripts/{id}" \
-X DELETE \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/scripts/{id}',
    'method': 'DELETE',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
This API is not included yet in qlik-cli

Sets space on a specific app.

Sets space on a specific app.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

Request Body

Required

*/*

New space.

  • */*object
    Show */* properties
    • spaceIdstring

Responses

200

application/json

OK

Application attributes and user privileges.

  • application/jsonobject

    Application attributes and user privileges.

    Show application/json properties
    • createarray of objects
    • attributesobject

      App attributes. This structure can also contain extra user-defined attributes.

      Show attributes properties
      • idstring

        The App ID.

      • namestring

        App name.

      • ownerstringDeprecated

        Deprecated. Use user api to fetch user metadata.

      • usagestring

        Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP"

      • customobject

        Contains dynamic JSON data specified by the client.

      • ownerIdstring

        Identifier of the app owner.

      • encryptedboolean

        If set to true, the app is encrypted.

      • publishedboolean

        True if the app is published on-prem, distributed in QCS, false if not.

      • thumbnailstring

        App thumbnail.

      • createdDatestring

        The date and time when the app was created.

      • descriptionstring

        App description.

      • originAppIdstring

        The Origin App ID for published apps.

      • publishTimestring

        The date and time when the app was published, empty if unpublished.

      • dynamicColorstring

        The dynamic color of the app.

      • modifiedDatestring

        The date and time when the app was modified.

      • lastReloadTimestring

        Date and time of the last reload of the app.

      • hasSectionAccessboolean

        If set to true, the app has section access configured,

      • isDirectQueryModeboolean

        True if the app is a Direct Query app, false if not

    • privilegesarray of strings

      Application privileges. Hints to the client what actions the user is allowed to perform. Could be any of:

      • read
      • create
      • update
      • delete
      • reload
      • import
      • publish
      • duplicate
      • export
      • exportdata
      • change_owner
      • change_space
PUT /v1/apps/{appId}/space
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/space" \
-X PUT \
-H "Content-type: */*" \
-H "Authorization: Bearer <API-key>" \
-d '{"spaceId":"string"}'
const https = require('https')
  const data = JSON.stringify({"spaceId":"string"})
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/space',
    'method': 'PUT',
    'headers': {
      'Content-type': '*/*',
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  req.write(data)
  
qlik app space update <appId> \
--spaceId="string"

Request

{
  "spaceId": "string"
}

Response

{
  "create": [
    {}
  ],
  "attributes": {
    "id": "string",
    "name": "string",
    "owner": "string",
    "custom": {},
    "ownerId": "string",
    "encrypted": true,
    "published": true,
    "thumbnail": "string",
    "createdDate": "2018-10-30T07:06:22Z",
    "description": "string",
    "originAppId": "string",
    "publishTime": "2018-10-30T07:06:22Z",
    "dynamicColor": "string",
    "modifiedDate": "2018-10-30T07:06:22Z",
    "lastReloadTime": "2018-10-30T07:06:22Z",
    "hasSectionAccess": true,
    "isDirectQueryMode": true
  },
  "privileges": [
    "string"
  ]
}

Removes space from a specific app.

Removes space from a specific app.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Path Parameters

  • appIdstring
    Required

    Identifier of the app.

Responses

200

application/json

OK

Application attributes and user privileges.

  • application/jsonobject

    Application attributes and user privileges.

    Show application/json properties
    • createarray of objects
    • attributesobject

      App attributes. This structure can also contain extra user-defined attributes.

      Show attributes properties
      • idstring

        The App ID.

      • namestring

        App name.

      • ownerstringDeprecated

        Deprecated. Use user api to fetch user metadata.

      • usagestring

        Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP"

      • customobject

        Contains dynamic JSON data specified by the client.

      • ownerIdstring

        Identifier of the app owner.

      • encryptedboolean

        If set to true, the app is encrypted.

      • publishedboolean

        True if the app is published on-prem, distributed in QCS, false if not.

      • thumbnailstring

        App thumbnail.

      • createdDatestring

        The date and time when the app was created.

      • descriptionstring

        App description.

      • originAppIdstring

        The Origin App ID for published apps.

      • publishTimestring

        The date and time when the app was published, empty if unpublished.

      • dynamicColorstring

        The dynamic color of the app.

      • modifiedDatestring

        The date and time when the app was modified.

      • lastReloadTimestring

        Date and time of the last reload of the app.

      • hasSectionAccessboolean

        If set to true, the app has section access configured,

      • isDirectQueryModeboolean

        True if the app is a Direct Query app, false if not

    • privilegesarray of strings

      Application privileges. Hints to the client what actions the user is allowed to perform. Could be any of:

      • read
      • create
      • update
      • delete
      • reload
      • import
      • publish
      • duplicate
      • export
      • exportdata
      • change_owner
      • change_space
DELETE /v1/apps/{appId}/space
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{appId}/space" \
-X DELETE \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{appId}/space',
    'method': 'DELETE',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app space rm <appId>

Response

{
  "create": [
    {}
  ],
  "attributes": {
    "id": "string",
    "name": "string",
    "owner": "string",
    "custom": {},
    "ownerId": "string",
    "encrypted": true,
    "published": true,
    "thumbnail": "string",
    "createdDate": "2018-10-30T07:06:22Z",
    "description": "string",
    "originAppId": "string",
    "publishTime": "2018-10-30T07:06:22Z",
    "dynamicColor": "string",
    "modifiedDate": "2018-10-30T07:06:22Z",
    "lastReloadTime": "2018-10-30T07:06:22Z",
    "hasSectionAccess": true,
    "isDirectQueryMode": true
  },
  "privileges": [
    "string"
  ]
}

Retrieve a list of all historic evaluations for an app GUID

Find all evaluations for an app GUID. Supports paging via next, prev which are sent in the response body

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Query Parameters

  • allboolean

    Get the full data of the evaluation

  • fileModeboolean

    Add file transfer headers to response

  • formatstring

    Specify output format, currently supported are 'json' and 'xml'

  • limitinteger

    Number of results to return per page.

  • nextstring

    The app evaluation id to get next page from

  • prevstring

    The app evaluation id to get previous page from

  • sortstring

    Property to sort list on

Path Parameters

  • guidstring
    Required

    The app guid.

Responses

200

application/json

Evaluation(s) retrieved successfully.

  • application/jsonobject
    Show application/json properties
    • dataarray of objects
      Show data properties
      • idstring
      • appIdstring
      • endedstring
      • eventsarray of objects
        Show events properties
        • detailsstring
        • sheetIdstring
        • objectIdstring
        • severitystring
        • errorCodestring
        • objectTypestring
        • sheetTitlestring
        • objectTitlestring
        • objectVisualizationstring
      • resultobject
        Show result properties
        • sheetsarray of objects
          Show sheets properties
          • sheetobject
            Show sheet properties
            • idstring
            • titlestring
            • sheetIdstring
            • objectTypestring
            • timeoutStatusCodestring
            • responseTimeSecondsnumber
          • objectCountnumber
          • sheetObjectsarray of objects
        • rowCountnumber
        • objNoCachearray of objects
        • sheetCountnumber
        • objectCountnumber
        • objSlowCachedarray of objects
        • objMemoryLimitarray of objects
          Show objMemoryLimit properties
          • idstring
          • titlestring
          • sheetIdstring
          • objectTypestring
          • memoryLimitStatusCodestring
        • documentSizeMiBnumber
        • objSlowUncachedarray of objects
        • hasSectionAccessboolean
        • topFieldsByBytesarray of objects
          Show topFieldsByBytes properties
          • namestring
          • byte_sizenumber
          • is_systemboolean
          • namestring
          • byte_sizenumber
        • topTablesByBytesarray of objects
          Show topTablesByBytes properties
          • namestring
          • byte_sizenumber
          • is_systemboolean
          • namestring
          • byte_sizenumber
        • objSingleThreadedarray of objects
          Show objSingleThreaded properties
          • idstring
          • titlestring
          • sheetIdstring
          • objectTypestring
          • cpuQuotient1number
      • statusstring
      • appNamestring
      • detailsobject
        Show details properties
        • errorsarray of strings
        • warningsarray of strings
        • dedicatedboolean
        • objectMetricsobject
        • engineHasCacheboolean
        • concurrentReloadboolean
      • sheetIdstring
      • startedstring
      • versionnumber
      • metadataobject
        Show metadata properties
        • reloadmetaobject
          Show reloadmeta properties
          • cpuspentnumber
          • peakmemorybytesnumber
        • amountofrowsnumber
        • amountoffieldsnumber
        • amountoftablesnumber
        • staticbytesizenumber
        • hassectionaccessboolean
        • amountoffieldvaluesnumber
        • amountofcardinalfieldvaluesnumber
      • tenantIdstring
      • appItemIdstring
      • timestampstring
      • sheetTitlestring
    • linksobject
      Show links properties
      • nextobject
        Show next properties
        • hrefstring
      • prevobject
        Show prev properties
        • hrefstring

400

application/json

Bad request.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
      Show errors properties
      • codestring
      • titlestring
      • statusinteger

404

application/json

Not Found.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
      Show errors properties
      • codestring
      • titlestring
      • statusinteger

500

application/json

Internal server error.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
      Show errors properties
      • codestring
      • titlestring
      • statusinteger
GET /v1/apps/{guid}/evaluations
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{guid}/evaluations" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{guid}/evaluations',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app evaluation ls \
--guid="string"

Response

{
  "data": [
    {
      "id": "5ecb5e65028d1f0001a98071",
      "appId": "7c2ce11d-4d10-4414-a9b0-620e57298038",
      "ended": "2022-02-09T06:58:40.575Z",
      "events": [
        {
          "details": "An object failed",
          "sheetId": "gregFG",
          "objectId": "adfRFr",
          "severity": "warning",
          "errorCode": "ERR-GOPHERCISER",
          "objectType": "linechart",
          "sheetTitle": "mysheet",
          "objectTitle": "profit",
          "objectVisualization": "linechart"
        }
      ],
      "result": {
        "sheets": [
          {
            "sheet": {
              "id": "fjETFn",
              "title": "my chart",
              "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
              "objectType": "table",
              "timeoutStatusCode": "CALC-TIMEOUT",
              "responseTimeSeconds": 12.3
            },
            "objectCount": 1,
            "sheetObjects": [
              {}
            ]
          }
        ],
        "rowCount": 20000,
        "objNoCache": [
          {}
        ],
        "sheetCount": 5,
        "objectCount": 33,
        "objSlowCached": [
          {}
        ],
        "objMemoryLimit": [
          {
            "id": "fjETFn",
            "title": "my chart",
            "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
            "objectType": "table",
            "memoryLimitStatusCode": "OUT-OF-MEMORY"
          }
        ],
        "documentSizeMiB": 12.3,
        "objSlowUncached": [
          {}
        ],
        "hasSectionAccess": false,
        "topFieldsByBytes": [
          {
            "name": "a",
            "byte_size": 1234,
            "is_system": false
          }
        ],
        "topTablesByBytes": [
          {
            "name": "a",
            "byte_size": 1234,
            "is_system": false
          }
        ],
        "objSingleThreaded": [
          {
            "id": "fjETFn",
            "title": "my chart",
            "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
            "objectType": "table",
            "cpuQuotient1": 12.3
          }
        ]
      },
      "status": "finished",
      "appName": "my app",
      "details": {
        "errors": [
          "this is an error"
        ],
        "warnings": [
          "this is a warning"
        ],
        "dedicated": false,
        "objectMetrics": {},
        "engineHasCache": false,
        "concurrentReload": false
      },
      "sheetId": "zyb2bQTeFmPVt9TXZOS0I5GZCFn",
      "started": "2022-02-09T06:58:40.575Z",
      "version": 1,
      "metadata": {
        "reloadmeta": {
          "cpuspent": "123983",
          "peakmemorybytes": 112
        },
        "amountofrows": 1423423234,
        "amountoffields": 12,
        "amountoftables": 7,
        "staticbytesize": 1444234,
        "hassectionaccess": false,
        "amountoffieldvalues": 144423433,
        "amountofcardinalfieldvalues": 14442
      },
      "tenantId": "zyb2bQTeFmPVt9TXZOS0I5GZCFn",
      "appItemId": "zyb2bQTeFmPVt9TXZOS0I5GZCFn",
      "timestamp": "2022-02-09T06:58:40.575Z",
      "sheetTitle": "my sheet"
    }
  ],
  "links": {
    "next": {
      "href": "/api/v1/evaluations/appId=a84c22cf-31e5-41fe-9e8f-544b85513484&prev=5f5201908b3fc5fc132dbd35"
    },
    "prev": {
      "href": "/api/v1/evaluations/appId=a84c22cf-31e5-41fe-9e8f-544b85513484&prev=5f5201908b3fc5fc132dbd35"
    }
  }
}

Queue an app evaluation

Queue an app evaluation by its app guid.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Path Parameters

  • guidstring
    Required

    Guid of the app.

Responses

201

application/json

App evaluation queued.

  • application/jsonobject
    Show application/json properties
    • idstring
    • appIdstring
    • endedstring
    • eventsarray of objects
    • resultobject
      Show result properties
      • sheetsarray of objects
      • rowCountnumber
      • objNoCachearray of objects
      • sheetCountnumber
      • objectCountnumber
      • objSlowCachedarray of objects
      • objMemoryLimitarray of objects
      • documentSizeMiBnumber
      • objSlowUncachedarray of objects
      • hasSectionAccessboolean
      • topFieldsByBytesarray of objects
      • topTablesByBytesarray of objects
      • objSingleThreadedarray of objects
    • statusstring
    • appNamestring
    • detailsobject
      Show details properties
      • errorsarray of strings
      • warningsarray of strings
      • dedicatedboolean
      • objectMetricsobject
      • engineHasCacheboolean
      • concurrentReloadboolean
    • sheetIdstring
    • startedstring
    • versionnumber
    • metadataobject
      Show metadata properties
      • reloadmetaobject
        Show reloadmeta properties
        • cpuspentnumber
        • peakmemorybytesnumber
      • amountofrowsnumber
      • amountoffieldsnumber
      • amountoftablesnumber
      • staticbytesizenumber
      • hassectionaccessboolean
      • amountoffieldvaluesnumber
      • amountofcardinalfieldvaluesnumber
    • tenantIdstring
    • appItemIdstring
    • timestampstring
    • sheetTitlestring

400

application/json

Bad request, incorrect body.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
      Show errors properties
      • codestring
      • titlestring
      • statusinteger

403

application/json

User lacks permissions to evaluate app.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
      Show errors properties
      • codestring
      • titlestring
      • statusinteger

404

application/json

App does not exist.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
      Show errors properties
      • codestring
      • titlestring
      • statusinteger

500

application/json

Internal server error.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
      Show errors properties
      • codestring
      • titlestring
      • statusinteger
POST /v1/apps/{guid}/evaluations
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/{guid}/evaluations" \
-X POST \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/{guid}/evaluations',
    'method': 'POST',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app evaluation create \
--guid="string"

Response

{
  "id": "5ecb5e65028d1f0001a98071",
  "appId": "7c2ce11d-4d10-4414-a9b0-620e57298038",
  "ended": "2022-02-09T06:58:40.575Z",
  "events": [
    {}
  ],
  "result": {
    "sheets": [
      {}
    ],
    "rowCount": 20000,
    "objNoCache": [
      {}
    ],
    "sheetCount": 5,
    "objectCount": 33,
    "objSlowCached": [
      {}
    ],
    "objMemoryLimit": [
      {}
    ],
    "documentSizeMiB": 12.3,
    "objSlowUncached": [
      {}
    ],
    "hasSectionAccess": false,
    "topFieldsByBytes": [
      {}
    ],
    "topTablesByBytes": [
      {}
    ],
    "objSingleThreaded": [
      {}
    ]
  },
  "status": "finished",
  "appName": "my app",
  "details": {
    "errors": [
      "this is an error"
    ],
    "warnings": [
      "this is a warning"
    ],
    "dedicated": false,
    "objectMetrics": {},
    "engineHasCache": false,
    "concurrentReload": false
  },
  "sheetId": "zyb2bQTeFmPVt9TXZOS0I5GZCFn",
  "started": "2022-02-09T06:58:40.575Z",
  "version": 1,
  "metadata": {
    "reloadmeta": {
      "cpuspent": "123983",
      "peakmemorybytes": 112
    },
    "amountofrows": 1423423234,
    "amountoffields": 12,
    "amountoftables": 7,
    "staticbytesize": 1444234,
    "hassectionaccess": false,
    "amountoffieldvalues": 144423433,
    "amountofcardinalfieldvalues": 14442
  },
  "tenantId": "zyb2bQTeFmPVt9TXZOS0I5GZCFn",
  "appItemId": "zyb2bQTeFmPVt9TXZOS0I5GZCFn",
  "timestamp": "2022-02-09T06:58:40.575Z",
  "sheetTitle": "my sheet"
}

Compare two evaluations

Accepts two evaluation ids and returns a comparison denoting the differences between the two.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Query Parameters

  • allboolean

    Get the full list of comparisons including non-significant diffs

  • formatstring

    Specify output format, currently supported are 'json' and 'xml'

Path Parameters

  • baseidstring
    Required

    Id of the baseline evaluation

  • comparisonidstring
    Required

    Id of the comparison evaluation

Responses

200

application/json

Comparison executed successfully.

  • application/jsonobject
    Show application/json properties
    • objHeavyobject
      Show objHeavy properties
      • listarray of objects
        Show list properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • cpuSeconds1object
          Show cpuSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuSeconds2object
          Show cpuSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient1object
          Show cpuQuotient1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient2object
          Show cpuQuotient2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • cpuSeconds1object
          Show cpuSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuSeconds2object
          Show cpuSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient1object
          Show cpuQuotient1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient2object
          Show cpuQuotient2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • cpuSeconds1object
          Show cpuSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuSeconds2object
          Show cpuSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient1object
          Show cpuQuotient1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient2object
          Show cpuQuotient2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • cpuSeconds1object
          Show cpuSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuSeconds2object
          Show cpuSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient1object
          Show cpuQuotient1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient2object
          Show cpuQuotient2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • cpuSeconds1object
          Show cpuSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuSeconds2object
          Show cpuSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient1object
          Show cpuQuotient1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient2object
          Show cpuQuotient2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

    • rowCountobject
      Show rowCount properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber
    • objNoCacheobject
      Show objNoCache properties
      • listarray of objects
        Show list properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
    • sheetCountobject
      Show sheetCount properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber
    • fileSizeMibobject
      Show fileSizeMib properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber
    • objectCountobject
      Show objectCount properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber
    • maxMemoryMibobject
      Show maxMemoryMib properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber
    • sheetsCachedobject
      Show sheetsCached properties
      • listarray of objects
        Show list properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
    • objSlowCachedobject
      Show objSlowCached properties
      • listarray of objects
        Show list properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
    • objMemoryLimitarray of objects
      Show objMemoryLimit properties
      • idstring
      • titlestring
      • sheetIdstring
      • objectTypestring
      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • baselineMemoryLimitStatusCodestring
      • comparisonMemoryLimitStatusCodestring
    • sheetsUncachedobject
      Show sheetsUncached properties
      • listarray of objects
        Show list properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
    • documentSizeMibobject
      Show documentSizeMib properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber
    • objSlowUncachedobject
      Show objSlowUncached properties
      • listarray of objects
        Show list properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
    • dataModelSizeMibobject
      Show dataModelSizeMib properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber
    • hasSectionAccessobject
      Show hasSectionAccess properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselineboolean
      • comparisonboolean
    • topFieldsByBytesobject
      Show topFieldsByBytes properties
      • listarray of objects
        Show list properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • cardinalobject
          Show cardinal properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • total_countobject
          Show total_count properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • cardinalobject
          Show cardinal properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • total_countobject
          Show total_count properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • cardinalobject
          Show cardinal properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • total_countobject
          Show total_count properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • cardinalobject
          Show cardinal properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • total_countobject
          Show total_count properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • cardinalobject
          Show cardinal properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • total_countobject
          Show total_count properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

    • topTablesByBytesobject
      Show topTablesByBytes properties
      • listarray of objects
        Show list properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • no_of_rowsobject
          Show no_of_rows properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • no_of_rowsobject
          Show no_of_rows properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • no_of_rowsobject
          Show no_of_rows properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • no_of_rowsobject
          Show no_of_rows properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • no_of_rowsobject
          Show no_of_rows properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

    • objSingleThreadedobject
      Show objSingleThreaded properties
      • listarray of objects
        Show list properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
    • appOpenTimeSecondsobject
      Show appOpenTimeSeconds properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber

404

application/json

Not Found.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
      Show errors properties
      • codestring
      • titlestring
      • statusinteger

500

application/json

Internal server error.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
      Show errors properties
      • codestring
      • titlestring
      • statusinteger
GET /v1/apps/evaluations/{baseid}/actions/compare/{comparisonid}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/evaluations/{baseid}/actions/compare/{comparisonid}" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/evaluations/{baseid}/actions/compare/{comparisonid}',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app evaluation action compare get <comparisonid> \
--baseid="string"

Response

{
  "objHeavy": {
    "list": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "cpuSeconds1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuSeconds2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "dataSourceStatus": "full"
      }
    ],
    "absoluteDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "cpuSeconds1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuSeconds2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "dataSourceStatus": "full"
      }
    ],
    "relativeDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "cpuSeconds1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuSeconds2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "dataSourceStatus": "full"
      }
    ],
    "absoluteDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "cpuSeconds1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuSeconds2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "dataSourceStatus": "full"
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "cpuSeconds1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuSeconds2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "dataSourceStatus": "full"
      }
    ]
  },
  "rowCount": {
    "baseline": 1,
    "comparison": 2
  },
  "objNoCache": {
    "list": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "relativeDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ]
  },
  "sheetCount": {
    "baseline": 1,
    "comparison": 2
  },
  "fileSizeMib": {
    "baseline": 1.1,
    "comparison": 2.2
  },
  "objectCount": {
    "baseline": 1,
    "comparison": 2
  },
  "maxMemoryMib": {
    "baseline": 1.1,
    "comparison": 2.2
  },
  "sheetsCached": {
    "list": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "relativeDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ]
  },
  "objSlowCached": {
    "list": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "relativeDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ]
  },
  "objMemoryLimit": [
    {
      "id": "fjETFn",
      "title": "my chart",
      "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
      "objectType": "table",
      "dataSourceStatus": "full",
      "baselineMemoryLimitStatusCode": "OUT-OF-MEMORY",
      "comparisonMemoryLimitStatusCode": "OUT-OF-MEMORY"
    }
  ],
  "sheetsUncached": {
    "list": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "relativeDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ]
  },
  "documentSizeMib": {
    "baseline": 1.1,
    "comparison": 2.2
  },
  "objSlowUncached": {
    "list": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "relativeDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ]
  },
  "dataModelSizeMib": {
    "baseline": 1.1,
    "comparison": 2.2
  },
  "hasSectionAccess": {
    "baseline": false,
    "comparison": true
  },
  "topFieldsByBytes": {
    "list": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "cardinal": {
          "baseline": 1,
          "comparison": 2
        },
        "total_count": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "absoluteDiffAsc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "cardinal": {
          "baseline": 1,
          "comparison": 2
        },
        "total_count": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "relativeDiffAsc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "cardinal": {
          "baseline": 1,
          "comparison": 2
        },
        "total_count": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "absoluteDiffDesc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "cardinal": {
          "baseline": 1,
          "comparison": 2
        },
        "total_count": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "cardinal": {
          "baseline": 1,
          "comparison": 2
        },
        "total_count": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ]
  },
  "topTablesByBytes": {
    "list": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "no_of_rows": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "absoluteDiffAsc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "no_of_rows": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "relativeDiffAsc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "no_of_rows": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "absoluteDiffDesc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "no_of_rows": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "no_of_rows": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ]
  },
  "objSingleThreaded": {
    "list": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "relativeDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ]
  },
  "appOpenTimeSeconds": {
    "baseline": 1.1,
    "comparison": 2.2
  }
}

Download a comparison log of two evaluations

Accepts two evaluation ids and downloads a log, in XML format, denoting the differences between the two.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Path Parameters

  • baseidstring
    Required

    Id of the baseline evaluation

  • comparisonidstring
    Required

    Id of the comparison evaluation

Responses

200

application/json

Comparison executed successfully.

  • application/jsonobject
    Show application/json properties
    • objHeavyobject
      Show objHeavy properties
      • listarray of objects
        Show list properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • cpuSeconds1object
          Show cpuSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuSeconds2object
          Show cpuSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient1object
          Show cpuQuotient1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient2object
          Show cpuQuotient2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • cpuSeconds1object
          Show cpuSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuSeconds2object
          Show cpuSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient1object
          Show cpuQuotient1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient2object
          Show cpuQuotient2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • cpuSeconds1object
          Show cpuSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuSeconds2object
          Show cpuSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient1object
          Show cpuQuotient1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient2object
          Show cpuQuotient2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • cpuSeconds1object
          Show cpuSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuSeconds2object
          Show cpuSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient1object
          Show cpuQuotient1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient2object
          Show cpuQuotient2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • cpuSeconds1object
          Show cpuSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuSeconds2object
          Show cpuSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient1object
          Show cpuQuotient1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • cpuQuotient2object
          Show cpuQuotient2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

    • rowCountobject
      Show rowCount properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber
    • objNoCacheobject
      Show objNoCache properties
      • listarray of objects
        Show list properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
    • sheetCountobject
      Show sheetCount properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber
    • fileSizeMibobject
      Show fileSizeMib properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber
    • objectCountobject
      Show objectCount properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber
    • maxMemoryMibobject
      Show maxMemoryMib properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber
    • sheetsCachedobject
      Show sheetsCached properties
      • listarray of objects
        Show list properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
    • objSlowCachedobject
      Show objSlowCached properties
      • listarray of objects
        Show list properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
    • objMemoryLimitarray of objects
      Show objMemoryLimit properties
      • idstring
      • titlestring
      • sheetIdstring
      • objectTypestring
      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • baselineMemoryLimitStatusCodestring
      • comparisonMemoryLimitStatusCodestring
    • sheetsUncachedobject
      Show sheetsUncached properties
      • listarray of objects
        Show list properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
    • documentSizeMibobject
      Show documentSizeMib properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber
    • objSlowUncachedobject
      Show objSlowUncached properties
      • listarray of objects
        Show list properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
    • dataModelSizeMibobject
      Show dataModelSizeMib properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber
    • hasSectionAccessobject
      Show hasSectionAccess properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselineboolean
      • comparisonboolean
    • topFieldsByBytesobject
      Show topFieldsByBytes properties
      • listarray of objects
        Show list properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • cardinalobject
          Show cardinal properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • total_countobject
          Show total_count properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • cardinalobject
          Show cardinal properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • total_countobject
          Show total_count properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • cardinalobject
          Show cardinal properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • total_countobject
          Show total_count properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • cardinalobject
          Show cardinal properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • total_countobject
          Show total_count properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • cardinalobject
          Show cardinal properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • total_countobject
          Show total_count properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

    • topTablesByBytesobject
      Show topTablesByBytes properties
      • listarray of objects
        Show list properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • no_of_rowsobject
          Show no_of_rows properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • no_of_rowsobject
          Show no_of_rows properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • no_of_rowsobject
          Show no_of_rows properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • no_of_rowsobject
          Show no_of_rows properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • namestring
        • byte_sizenumber
        • is_systemboolean
        • namestring
        • byte_sizeobject
          Show byte_size properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • is_systemobject
          Show is_system properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselineboolean
          • comparisonboolean
        • no_of_rowsobject
          Show no_of_rows properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

    • objSingleThreadedobject
      Show objSingleThreaded properties
      • listarray of objects
        Show list properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffAscarray of objects
        Show absoluteDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • relativeDiffAscarray of objects
        Show relativeDiffAsc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • absoluteDiffDescarray of objects
        Show absoluteDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
      • dataSourceStatusstring

        Can be one of: "full""none""baselinemissing""comparisonmissing"

      • relativeDiffDescarray of objects
        Show relativeDiffDesc properties
        • idstring
        • titlestring
        • sheetIdstring
        • objectTypestring
        • dataSourceStatusstring

          Can be one of: "full""none""baselinemissing""comparisonmissing"

        • responseTimeSeconds1object
          Show responseTimeSeconds1 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
        • responseTimeSeconds2object
          Show responseTimeSeconds2 properties
          • diffnumber
          • trendstring
          • absoluteDiffnumber
          • baselinenumber
          • comparisonnumber
          • baselineTimeoutStatusCodestring
          • comparisonTimeoutStatusCodestring
    • appOpenTimeSecondsobject
      Show appOpenTimeSeconds properties
      • diffnumber
      • trendstring
      • absoluteDiffnumber
      • baselinenumber
      • comparisonnumber

404

application/json

Not Found.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
      Show errors properties
      • codestring
      • titlestring
      • statusinteger

500

application/json

Internal server error.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
      Show errors properties
      • codestring
      • titlestring
      • statusinteger
GET /v1/apps/evaluations/{baseid}/actions/compare/{comparisonid}/actions/download
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/evaluations/{baseid}/actions/compare/{comparisonid}/actions/download" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/evaluations/{baseid}/actions/compare/{comparisonid}/actions/download',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app evaluation action compare download \
--baseid="string" \
--comparisonid="string"

Response

{
  "objHeavy": {
    "list": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "cpuSeconds1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuSeconds2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "dataSourceStatus": "full"
      }
    ],
    "absoluteDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "cpuSeconds1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuSeconds2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "dataSourceStatus": "full"
      }
    ],
    "relativeDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "cpuSeconds1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuSeconds2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "dataSourceStatus": "full"
      }
    ],
    "absoluteDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "cpuSeconds1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuSeconds2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "dataSourceStatus": "full"
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "cpuSeconds1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuSeconds2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient1": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "cpuQuotient2": {
          "baseline": 1.1,
          "comparison": 2.2
        },
        "dataSourceStatus": "full"
      }
    ]
  },
  "rowCount": {
    "baseline": 1,
    "comparison": 2
  },
  "objNoCache": {
    "list": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "relativeDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ]
  },
  "sheetCount": {
    "baseline": 1,
    "comparison": 2
  },
  "fileSizeMib": {
    "baseline": 1.1,
    "comparison": 2.2
  },
  "objectCount": {
    "baseline": 1,
    "comparison": 2
  },
  "maxMemoryMib": {
    "baseline": 1.1,
    "comparison": 2.2
  },
  "sheetsCached": {
    "list": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "relativeDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ]
  },
  "objSlowCached": {
    "list": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "relativeDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ]
  },
  "objMemoryLimit": [
    {
      "id": "fjETFn",
      "title": "my chart",
      "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
      "objectType": "table",
      "dataSourceStatus": "full",
      "baselineMemoryLimitStatusCode": "OUT-OF-MEMORY",
      "comparisonMemoryLimitStatusCode": "OUT-OF-MEMORY"
    }
  ],
  "sheetsUncached": {
    "list": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "relativeDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ]
  },
  "documentSizeMib": {
    "baseline": 1.1,
    "comparison": 2.2
  },
  "objSlowUncached": {
    "list": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "relativeDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ]
  },
  "dataModelSizeMib": {
    "baseline": 1.1,
    "comparison": 2.2
  },
  "hasSectionAccess": {
    "baseline": false,
    "comparison": true
  },
  "topFieldsByBytes": {
    "list": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "cardinal": {
          "baseline": 1,
          "comparison": 2
        },
        "total_count": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "absoluteDiffAsc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "cardinal": {
          "baseline": 1,
          "comparison": 2
        },
        "total_count": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "relativeDiffAsc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "cardinal": {
          "baseline": 1,
          "comparison": 2
        },
        "total_count": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "absoluteDiffDesc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "cardinal": {
          "baseline": 1,
          "comparison": 2
        },
        "total_count": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "cardinal": {
          "baseline": 1,
          "comparison": 2
        },
        "total_count": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ]
  },
  "topTablesByBytes": {
    "list": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "no_of_rows": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "absoluteDiffAsc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "no_of_rows": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "relativeDiffAsc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "no_of_rows": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "absoluteDiffDesc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "no_of_rows": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "name": "a",
        "byte_size": {
          "baseline": 1,
          "comparison": 2
        },
        "is_system": {
          "baseline": false,
          "comparison": true
        },
        "no_of_rows": {
          "baseline": 1,
          "comparison": 2
        },
        "dataSourceStatus": "full"
      }
    ]
  },
  "objSingleThreaded": {
    "list": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "relativeDiffAsc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "absoluteDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ],
    "dataSourceStatus": "full",
    "relativeDiffDesc": [
      {
        "id": "fjETFn",
        "title": "my chart",
        "sheetId": "41dbb01c-d1bd-4528-be05-910ee565988b",
        "objectType": "table",
        "dataSourceStatus": "full",
        "responseTimeSeconds1": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        },
        "responseTimeSeconds2": {
          "baselineTimeoutStatusCode": "CALC-TIMEOUT",
          "comparisonTimeoutStatusCode": "CALC-TIMEOUT"
        }
      }
    ]
  },
  "appOpenTimeSeconds": {
    "baseline": 1.1,
    "comparison": 2.2
  }
}

Retrieve a specific evaluation

Find an evaluation by a specific id.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Query Parameters

  • allboolean

    Get the full data of the evaluation

  • formatstring

    Specify output format, currently supported are 'json' and 'xml'

Path Parameters

  • idstring
    Required

    Id of the desired evaluation.

Responses

200

application/json

Evaluation(s) retrieved successfully.

  • application/jsonobject
    Show application/json properties
    • idstring
    • appIdstring
    • endedstring
    • eventsarray of objects
    • resultobject
      Show result properties
      • sheetsarray of objects
      • rowCountnumber
      • objNoCachearray of objects
      • sheetCountnumber
      • objectCountnumber
      • objSlowCachedarray of objects
      • objMemoryLimitarray of objects
      • documentSizeMiBnumber
      • objSlowUncachedarray of objects
      • hasSectionAccessboolean
      • topFieldsByBytesarray of objects
      • topTablesByBytesarray of objects
      • objSingleThreadedarray of objects
    • statusstring
    • appNamestring
    • detailsobject
      Show details properties
      • errorsarray of strings
      • warningsarray of strings
      • dedicatedboolean
      • objectMetricsobject
      • engineHasCacheboolean
      • concurrentReloadboolean
    • sheetIdstring
    • startedstring
    • versionnumber
    • metadataobject
      Show metadata properties
      • reloadmetaobject
        Show reloadmeta properties
        • cpuspentnumber
        • peakmemorybytesnumber
      • amountofrowsnumber
      • amountoffieldsnumber
      • amountoftablesnumber
      • staticbytesizenumber
      • hassectionaccessboolean
      • amountoffieldvaluesnumber
      • amountofcardinalfieldvaluesnumber
    • tenantIdstring
    • appItemIdstring
    • timestampstring
    • sheetTitlestring

404

application/json

Not Found.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
      Show errors properties
      • codestring
      • titlestring
      • statusinteger

500

application/json

Internal server error.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
      Show errors properties
      • codestring
      • titlestring
      • statusinteger
GET /v1/apps/evaluations/{id}
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/evaluations/{id}" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/evaluations/{id}',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app evaluation get <evaluationId>

Response

{
  "id": "5ecb5e65028d1f0001a98071",
  "appId": "7c2ce11d-4d10-4414-a9b0-620e57298038",
  "ended": "2022-02-09T06:58:40.575Z",
  "events": [
    {}
  ],
  "result": {
    "sheets": [
      {}
    ],
    "rowCount": 20000,
    "objNoCache": [
      {}
    ],
    "sheetCount": 5,
    "objectCount": 33,
    "objSlowCached": [
      {}
    ],
    "objMemoryLimit": [
      {}
    ],
    "documentSizeMiB": 12.3,
    "objSlowUncached": [
      {}
    ],
    "hasSectionAccess": false,
    "topFieldsByBytes": [
      {}
    ],
    "topTablesByBytes": [
      {}
    ],
    "objSingleThreaded": [
      {}
    ]
  },
  "status": "finished",
  "appName": "my app",
  "details": {
    "errors": [
      "this is an error"
    ],
    "warnings": [
      "this is a warning"
    ],
    "dedicated": false,
    "objectMetrics": {},
    "engineHasCache": false,
    "concurrentReload": false
  },
  "sheetId": "zyb2bQTeFmPVt9TXZOS0I5GZCFn",
  "started": "2022-02-09T06:58:40.575Z",
  "version": 1,
  "metadata": {
    "reloadmeta": {
      "cpuspent": "123983",
      "peakmemorybytes": 112
    },
    "amountofrows": 1423423234,
    "amountoffields": 12,
    "amountoftables": 7,
    "staticbytesize": 1444234,
    "hassectionaccess": false,
    "amountoffieldvalues": 144423433,
    "amountofcardinalfieldvalues": 14442
  },
  "tenantId": "zyb2bQTeFmPVt9TXZOS0I5GZCFn",
  "appItemId": "zyb2bQTeFmPVt9TXZOS0I5GZCFn",
  "timestamp": "2022-02-09T06:58:40.575Z",
  "sheetTitle": "my sheet"
}

Download a detailed XML log of a specific evaluation

Find and download an evaluation log by a specific evaluation id.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Path Parameters

  • idstring
    Required

    Id of the desired evaluation.

Responses

200

application/json

Evaluation(s) retrieved successfully.

  • application/jsonobject
    Show application/json properties
    • idstring
    • appIdstring
    • endedstring
    • eventsarray of objects
    • resultobject
      Show result properties
      • sheetsarray of objects
      • rowCountnumber
      • objNoCachearray of objects
      • sheetCountnumber
      • objectCountnumber
      • objSlowCachedarray of objects
      • objMemoryLimitarray of objects
      • documentSizeMiBnumber
      • objSlowUncachedarray of objects
      • hasSectionAccessboolean
      • topFieldsByBytesarray of objects
      • topTablesByBytesarray of objects
      • objSingleThreadedarray of objects
    • statusstring
    • appNamestring
    • detailsobject
      Show details properties
      • errorsarray of strings
      • warningsarray of strings
      • dedicatedboolean
      • objectMetricsobject
      • engineHasCacheboolean
      • concurrentReloadboolean
    • sheetIdstring
    • startedstring
    • versionnumber
    • metadataobject
      Show metadata properties
      • reloadmetaobject
        Show reloadmeta properties
        • cpuspentnumber
        • peakmemorybytesnumber
      • amountofrowsnumber
      • amountoffieldsnumber
      • amountoftablesnumber
      • staticbytesizenumber
      • hassectionaccessboolean
      • amountoffieldvaluesnumber
      • amountofcardinalfieldvaluesnumber
    • tenantIdstring
    • appItemIdstring
    • timestampstring
    • sheetTitlestring

404

application/json

Not Found.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
      Show errors properties
      • codestring
      • titlestring
      • statusinteger

500

application/json

Internal server error.

  • application/jsonobject
    Show application/json properties
    • errorsarray of objects
      Show errors properties
      • codestring
      • titlestring
      • statusinteger
GET /v1/apps/evaluations/{id}/actions/download
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/evaluations/{id}/actions/download" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/evaluations/{id}/actions/download',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app evaluation download <evaluationId>

Response

{
  "id": "5ecb5e65028d1f0001a98071",
  "appId": "7c2ce11d-4d10-4414-a9b0-620e57298038",
  "ended": "2022-02-09T06:58:40.575Z",
  "events": [
    {}
  ],
  "result": {
    "sheets": [
      {}
    ],
    "rowCount": 20000,
    "objNoCache": [
      {}
    ],
    "sheetCount": 5,
    "objectCount": 33,
    "objSlowCached": [
      {}
    ],
    "objMemoryLimit": [
      {}
    ],
    "documentSizeMiB": 12.3,
    "objSlowUncached": [
      {}
    ],
    "hasSectionAccess": false,
    "topFieldsByBytes": [
      {}
    ],
    "topTablesByBytes": [
      {}
    ],
    "objSingleThreaded": [
      {}
    ]
  },
  "status": "finished",
  "appName": "my app",
  "details": {
    "errors": [
      "this is an error"
    ],
    "warnings": [
      "this is a warning"
    ],
    "dedicated": false,
    "objectMetrics": {},
    "engineHasCache": false,
    "concurrentReload": false
  },
  "sheetId": "zyb2bQTeFmPVt9TXZOS0I5GZCFn",
  "started": "2022-02-09T06:58:40.575Z",
  "version": 1,
  "metadata": {
    "reloadmeta": {
      "cpuspent": "123983",
      "peakmemorybytes": 112
    },
    "amountofrows": 1423423234,
    "amountoffields": 12,
    "amountoftables": 7,
    "staticbytesize": 1444234,
    "hassectionaccess": false,
    "amountoffieldvalues": 144423433,
    "amountofcardinalfieldvalues": 14442
  },
  "tenantId": "zyb2bQTeFmPVt9TXZOS0I5GZCFn",
  "appItemId": "zyb2bQTeFmPVt9TXZOS0I5GZCFn",
  "timestamp": "2022-02-09T06:58:40.575Z",
  "sheetTitle": "my sheet"
}

Imports an app into the system.

Imports an app into the system.

Facts

Rate limit Tier 2 (100 requests per minute)
Categories externalmanagebuild

Query Parameters

  • appIdstring

    The app ID of the target app when source is qvw file.

  • fallbackNamestring

    The name of the target app when source does not have a specified name, applicable if source is qvw file.

  • fileIdstring

    The file ID to be downloaded from Temporary Content Service (TCS) and used during import.

  • modestring

    The import mode. In new mode (default), the source app will be imported as a new app.

    The autoreplace mode is an internal mode only and is not permitted for external use.

    One of:

    • NEW
    • AUTOREPLACE
  • namestring

    The name of the target app.

  • NoDataboolean

    If NoData is true, the data of the existing app will be kept as is, otherwise it will be replaced by the new incoming data.

  • spaceIdstring

    The space ID of the target app.

Request Body

application/octet-stream

Path of the source app.

  • application/octet-streamstring

Responses

200

application/json

OK

Application attributes and user privileges.

  • application/jsonobject

    Application attributes and user privileges.

    Show application/json properties
    • createarray of objects
    • attributesobject

      App attributes. This structure can also contain extra user-defined attributes.

      Show attributes properties
      • idstring

        The App ID.

      • namestring

        App name.

      • ownerstringDeprecated

        Deprecated. Use user api to fetch user metadata.

      • usagestring

        Can be one of: "ANALYTICS""DATA_PREPARATION""DATAFLOW_PREP"

      • customobject

        Contains dynamic JSON data specified by the client.

      • ownerIdstring

        Identifier of the app owner.

      • encryptedboolean

        If set to true, the app is encrypted.

      • publishedboolean

        True if the app is published on-prem, distributed in QCS, false if not.

      • thumbnailstring

        App thumbnail.

      • createdDatestring

        The date and time when the app was created.

      • descriptionstring

        App description.

      • originAppIdstring

        The Origin App ID for published apps.

      • publishTimestring

        The date and time when the app was published, empty if unpublished.

      • dynamicColorstring

        The dynamic color of the app.

      • modifiedDatestring

        The date and time when the app was modified.

      • lastReloadTimestring

        Date and time of the last reload of the app.

      • hasSectionAccessboolean

        If set to true, the app has section access configured,

      • isDirectQueryModeboolean

        True if the app is a Direct Query app, false if not

    • privilegesarray of strings

      Application privileges. Hints to the client what actions the user is allowed to perform. Could be any of:

      • read
      • create
      • update
      • delete
      • reload
      • import
      • publish
      • duplicate
      • export
      • exportdata
      • change_owner
      • change_space

404

Not Found

POST /v1/apps/import
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/import" \
-X POST \
-H "Content-type: application/octet-stream" \
-H "Authorization: Bearer <API-key>" \
--data-binary' \
          '"@/path/to/file"
const https = require('https')
  const data = JSON.stringify("string")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/import',
    'method': 'POST',
    'headers': {
      'Content-type': 'application/octet-stream',
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  req.write(streamData)
  
qlik app import

Request

"string"

Response

{
  "create": [
    {}
  ],
  "attributes": {
    "id": "string",
    "name": "string",
    "owner": "string",
    "custom": {},
    "ownerId": "string",
    "encrypted": true,
    "published": true,
    "thumbnail": "string",
    "createdDate": "2018-10-30T07:06:22Z",
    "description": "string",
    "originAppId": "string",
    "publishTime": "2018-10-30T07:06:22Z",
    "dynamicColor": "string",
    "modifiedDate": "2018-10-30T07:06:22Z",
    "lastReloadTime": "2018-10-30T07:06:22Z",
    "hasSectionAccess": true,
    "isDirectQueryMode": true
  },
  "privileges": [
    "string"
  ]
}

Gets the app privileges for the current user, such as create app and import app. Empty means that the current user has no app privileges.

Gets the app privileges for the current user, such as create app and import app. Empty means that the current user has no app privileges.

Facts

Rate limit Tier 1 (1000 requests per minute)
Categories externalmanagebuild

Responses

200

application/json

OK

  • application/jsonarray of strings

    Values may be any of: "can_create_app""can_import_app""can_create_session_app"

GET /v1/apps/privileges
curl "https://your-tenant.us.qlikcloud.com/api/v1/apps/privileges" \
-H "Authorization: Bearer <API-key>"
const https = require('https')
  const data = JSON.stringify("")
  const options =   {
    'hostname': 'https://your-tenant.us.qlikcloud.com',
    'port': 443,
    'path': '/api/v1/apps/privileges',
    'method': 'GET',
    'headers': {
      'Authorization': 'Bearer <API-key>'
    }
  }
  const req = https.request(options)
  
qlik app privileges

Response

[
  null
]