ODAG links connect selection applications (where users make selections) to template applications (the source for generation). An ODAG link enables users to submit requests that automatically generate new analytics applications. Use this API to create and manage links, and track which selection applications use specific links.

Note

Link creation requires canCreate permission. Only the link creator or request owner can delete or modify a link.

A Link object defines an on-demand data navigation path between a selection Analytics Application and a template Analytics Application including the set of properties that control how that data access occurs and under what conditions access is permitted. The set of links returned by this method have properties that match the combination of conditions defined by any supplied query parameters.

Facts

Rate limit Tier 1 (1000 requests per minute)

Query Parameters

  • includeChartsboolean

    Determines whether master charts of the template Analytics Application are included in the response.

  • selectionAppIDstring

    Filter the list by the selection Analytics Application ID.

  • typestring

    The type of the links to query. Defaults to link.

    Can be one of: "link""view""all"

  • optOwnerstring

    Use optOwner to filter results by link owner user ID. If supplied, only links owned by that user are returned. If not supplied, returns all links the current user can access.

Responses

200

ODAG links retrieved successfully.

  • application/jsonarray of objects

    The full state of a Link.

    Show application/json properties
    • idstring
      Required
    • namestring
      Required

      The name of a link.

    • ownerobject
      Required

      Condensed state of a user returned in state of ownable ODAG entities (for example, a link or request).

      Show owner properties
      • idstring
        Required

        The system-assigned ID for a user

      • namestring
        Required
      • subjectstring
        Required

        Identity subject used for identity mapping.

      • tenantidstring
        Required

        Tenant identifier.

    • statusstring
      Required

      The current status of a link.

      Can be one of: "active""disabled""decommissioned""incomplete"

    • bindingsarray of objects

      A collection of Bindings. Note that there can be multiple bindings having the same templateAppFieldName in a binding collection to denote different usages of the field's selection state in the context of the data prep logic but they all must have the same value for their range property.

      Show bindings properties
      • rangeobject

        The lower and upper bound for the permitted number of values that must exist in the selection Analytics Application's source parameter in order for this binding to be valid (and permit an ODAG Request to be submitted. If this property is not supplied, there is no constraint on either the lower or upper bound. To indicate that an exact number of selections are required, use the same number for both the lower and upper bound.

        Show range properties
        • lowerBoundinteger
        • upperBoundinteger
      • formattingobject

        A property value that describes the formatting of field values in a Binding. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

        Show formatting properties
        • quotestring

          The character to use for quote wrapping each of the bound values when formatting the source values associated with this binding. If this property is not supplied, a single quote character (') will be used by default. Use an empty string to suppress quote wrapping the values.

        • delimiterstring

          The character to use as a separator between two (or more) bound values when formatting the source values associated with this binding. If this property is not supplied, a comma character will be used by default. Use an empty string to indicate that no separator character should be used.

      • numericOnlyboolean

        Set to true to indicate that only numeric values from the selection Analytics Application source parameter should be used. The default value for this property, if left unspecified, is false. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

      • selectionStatesstring

        A combination of the letters S and/or O to indicate which values from the selection states selected or optional in the hypercube of the selection Analytics Application to harvest as bind values to inject into the script of the template Analytics Application at ODAG request submission time. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

      • selectAppParamNamestring

        The path (or name) of the selection Analytics Application field, variable, or property to obtain the list of values for this binding.

      • selectAppParamTypestring
        Required

        The different kinds of selection Analytics Application parameters whose values can be bound to the script of template Analytics Applications when generating new Analytics Applications. Note that Exclude is used to specifically prevent fields defined as optional bind parameters in the template Analytics Application script from being bound (these must either not have the optional quantity constraint specifiers or have a minimum quantity of 0).

        Can be one of: "Field""Variable""Property""Exclude""BDI"

      • templateAppVarNamestring
        Required
    • privilegesarray of strings
    • propertiesobject
      Required

      The complete set of possible properties for a link and their associated user context/value pairings.

      Show properties properties
      • disablearray of objects

        Set to true to temporarily disable the use of this Link to generate Analytics Applications.

        Show disable properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • disableboolean
          Required
      • menuLabelarray of objects

        The default label to use for this Link in the context of the selection Analytics Application's ODAG navigation menu.

        Show menuLabel properties
        • labelstring
          Required
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

      • genAppNamearray of objects

        An object that defines how to compute the name to use for the generated Analytics Application.

        Show genAppName properties
        • paramsarray of strings

          One of the allowed variables that, when evaluated at ODAG Request execution time, can be used to compute a part of a generated Analytics Application's name.

          Values may be any of: "templateAppName""userId""curYear""curMonth""curDay""curHr""curMin""curSec"

        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • formatStringstring
          Required

          A string containing the base text of the name to use for the generated Analytics Application and optionally any number of placeholder patterns of the form {N} where N is an integer greater than or equal to 0. The integer identifies the offset in the params array of an AppNameParameterV2 to evaluate at ODAG Request execution time to compute a fragment of the generated Analytics Application's name and insert it at the same position as its corresponding {N} placeholder.

      • genAppLimitarray of objects

        The limit to the number of Analytics Applications generated using this specific Link that can exist, and still not deleted, before the policy defined by the limitPolicy property (configured separately via LinkPropertiesV2.limitPolicy) is applied. If no limitPolicy is defined, the Restrict policy is assumed. If there is no value for this property applicable to the current user, there is no limit to the number of Analytics Applications that can be generated from this link for the user. The count of the current number of Analytics Applications is based on just those Analytics Applications generated by the current user (and still in existence) for this specific link. The minimum value for limit is 1.

        Show genAppLimit properties
        • limitinteger
          Required
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

      • limitPolicyarray of objects

        The action to take when the limit to the maximum number of generated Analytics Applications is reached.

        Show limitPolicy properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • limitPolicystring
          Required

          Can be one of: "Restrict""AutoDelete"

      • rowEstRangearray of objects
        Required

        A link property that defines a value range that the evaluated value of the row estimate measure must fall within in order to allow submissions of a request for the link.

        Show rowEstRange properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • lowBoundinteger

          The minimum value for the row estimate to enable usage of the link to perform an ODAG request. If the row estimate expression evaluates to a number lower than this value, the user will be prevented from submitting an ODAG request for this link. If this value is not supplied, no minimum is required.

        • highBoundinteger
          Required

          The maximum value for the row estimate to enable usage of the link. If the row estimate expression evaluates to a value larger than this value, the user will be prevented from submitting an ODAG request for this link.

      • targetSheetarray of objects

        An optional property that a Link creator can specify to cause the client to navigate to a specific sheet in the generated Analytics Application when opening the generated Analytics Application from the selection Analytics Application's navpoint panel.

        Show targetSheet properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • sheetIdstring
          Required

          The ID of the sheet to first navigate to when opening the generated Analytics Application from the selection Analytics Application.

        • sheetNamestring

          An optional, read-only property that is returned when retrieving a link if the targetSheet setting exists for the current user in the link's properties set and the sheet with that ID exists in the link's templateApp.

      • appOpenMethodarray of objects

        Sets the default method by which the newly generated Analytics Application is displayed when opened. The default is Tab to open a new tab in the same browser. Note that not all devices permit both methods so the chosen behavior may not apply if it is not supported on the user's device or browser.

        Show appOpenMethod properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • openMethodstring
          Required

          Can be one of: "Tab""Window"

      • appRetentionTimearray of objects

        A string that defines the length of time that a generated Analytics Application should be allowed to exist before it is automatically purged. The format must be in either ISO 8601 duration format or the text unlimited.

        Show appRetentionTime properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • retentionTimestring
          Required
      • overrideGenAppLimitarray of objects

        The limit to the number of Analytics Applications generated can be overridden using this specific Link that can exist, and still not deleted. The default value for this property is false. If this property value is set to true, then the limit value in genAppLimit is ignored.

        Show overrideGenAppLimit properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • overrideGenAppLimitboolean
    • rowEstExprstring
      Required

      The measure expression to be evaluated in the context of the selection Analytics Application for the link that estimates the number of records that will be qualified by the primary load query of the template Analytics Application. This expression must be valid in the context of the selection Analytics Application fields and update whenever the selection state of the selection Analytics Application changes.

    • createdDatestring
      Required
    • dynamicViewboolean

      When true, the ODAG link is treated as a dynamic view.

    • templateAppobject
      Required

      Condensed state of an Analytics Application returned in state for Link, LinkUsage, Request, and ODAG Apps GET calls.

      Show templateApp properties
      • idstring
        Required

        The system-assigned ID for an Analytics Application.

      • namestring
        Required

        The name of an Analytics Application.

    • modifiedDatestring
    • includeScriptboolean

      Set to true to include the generated Analytics Application load script in the generated Analytics Application. The default value is false.

    • modifiedByUserobject

      Condensed state of a user returned in state of ownable ODAG entities (for example, a link or request).

      Show modifiedByUser properties
      • idstring
        Required

        The system-assigned ID for a user

      • namestring
        Required
      • subjectstring
        Required

        Identity subject used for identity mapping.

      • tenantidstring
        Required

        Tenant identifier.

    • genAppAccessibleboolean

      Only returned on LinkGet and set to true if user will have access to an Analytics Application generated by this link.

    • templateAppChartObjectsarray of objects

403

Forbidden.

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

404

ODAG not enabled or access denied.

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

GET /api/analytics/odag-links
// qlik-api has not implemented support for `GET /api/analytics/odag-links` yet.
// In the meantime, you can use fetch like this:
const response = await fetch(
'/api/analytics/odag-links',
{
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
},
)
This API is not included yet in qlik-cli
curl "https://{tenant}.{region}.qlikcloud.com/api/analytics/odag-links" \
-H "Authorization: Bearer <access_token>"

Example Response

[
{
"id": "string",
"name": "ODAG Link name",
"owner": {
"id": "wcgIs6wGcDdyzep9QmyopWvNH1FJTOhh",
"name": "string",
"subject": "string",
"tenantid": "string"
},
"status": "active",
"bindings": [
{
"range": {
"lowerBound": 42,
"upperBound": 42
},
"formatting": {
"quote": "'",
"delimiter": ","
},
"numericOnly": false,
"selectionStates": "string",
"selectAppParamName": "string",
"selectAppParamType": "Field",
"templateAppVarName": "string"
}
],
"privileges": [
"string"
],
"properties": {
"disable": [
{
"context": "string",
"disable": true
}
],
"menuLabel": [
{
"label": "string",
"context": "string"
}
],
"genAppName": [
{
"params": [
"templateAppName"
],
"context": "string",
"formatString": "string"
}
],
"genAppLimit": [
{
"limit": 42,
"context": "string"
}
],
"limitPolicy": [
{
"context": "string",
"limitPolicy": "Restrict"
}
],
"rowEstRange": [
{
"context": "string",
"lowBound": 42,
"highBound": 42
}
],
"targetSheet": [
{
"context": "string",
"sheetId": "string",
"sheetName": "string"
}
],
"appOpenMethod": [
{
"context": "string",
"openMethod": "Tab"
}
],
"appRetentionTime": [
{
"context": "string",
"retentionTime": "string"
}
],
"overrideGenAppLimit": [
{
"context": "string",
"overrideGenAppLimit": false
}
]
},
"rowEstExpr": "string",
"createdDate": "2025-11-11T13:45:30Z",
"dynamicView": true,
"templateApp": {
"id": "string",
"name": "appname"
},
"modifiedDate": "2025-11-11T13:45:30Z",
"includeScript": false,
"modifiedByUser": {
"id": "wcgIs6wGcDdyzep9QmyopWvNH1FJTOhh",
"name": "string",
"subject": "string",
"tenantid": "string"
},
"genAppAccessible": true,
"templateAppChartObjects": [
{}
]
}
]

Create an ODAG link

Creates a new link that enables ODAG navigation from a designated selection Analytics Application to a generated Analytics Application that is created by copying the designated template Analytics Application, injecting values for bind variables harvested from the selection Analytics Application and dynamically loaded with data using those bindings. The Bindings will be initialized by searching the load script of the template Analytics Application for patterns of the form $(od_FIELDNAME)[M-N] where FIELDNAME is the name of a field in the model of the selection Analytics Application and the optional pattern [M-N] identifies the lower bound M and the upper bound N for the number of values for that field which must be in the active selection state of the selection Analytics Application for binding to occur. The active selection state defaults to selected (i.e. green) unless the od prefix is immediately followed by some combination of the letters s, o, or x, in that order, specifically designating the selected, optional (i.e. white) and/or excluded (i.e. gray) groups of values to be harvested from the selection Analytics Application's selection state. The bindings in the bindings array in the request payload override the properties of the corresponding field bindings found in the script of the template Analytics Application.

Facts

Rate limit Tier 2 (100 requests per minute)

Query Parameters

  • includeChartsboolean

    Determines whether master charts of the template Analytics Application are included in the response.

Request Body

Required

A JSON payload containing the content for a new ODAG link.

  • application/jsonobject

    An object that defines the properties of a Link to be created.

    Show application/json properties
    • namestring
      Required

      The name of a link.

    • bindingsarray of objects

      A collection of Bindings. Note that there can be multiple bindings having the same templateAppFieldName in a binding collection to denote different usages of the field's selection state in the context of the data prep logic but they all must have the same value for their range property.

      Show bindings properties
      • rangeobject

        The lower and upper bound for the permitted number of values that must exist in the selection Analytics Application's source parameter in order for this binding to be valid (and permit an ODAG Request to be submitted. If this property is not supplied, there is no constraint on either the lower or upper bound. To indicate that an exact number of selections are required, use the same number for both the lower and upper bound.

        Show range properties
        • lowerBoundinteger
        • upperBoundinteger
      • formattingobject

        A property value that describes the formatting of field values in a Binding. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

        Show formatting properties
        • quotestring

          The character to use for quote wrapping each of the bound values when formatting the source values associated with this binding. If this property is not supplied, a single quote character (') will be used by default. Use an empty string to suppress quote wrapping the values.

        • delimiterstring

          The character to use as a separator between two (or more) bound values when formatting the source values associated with this binding. If this property is not supplied, a comma character will be used by default. Use an empty string to indicate that no separator character should be used.

      • numericOnlyboolean

        Set to true to indicate that only numeric values from the selection Analytics Application source parameter should be used. The default value for this property, if left unspecified, is false. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

      • selectionStatesstring

        A combination of the letters S and/or O to indicate which values from the selection states selected or optional in the hypercube of the selection Analytics Application to harvest as bind values to inject into the script of the template Analytics Application at ODAG request submission time. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

      • selectAppParamNamestring

        The path (or name) of the selection Analytics Application field, variable, or property to obtain the list of values for this binding.

      • selectAppParamTypestring
        Required

        The different kinds of selection Analytics Application parameters whose values can be bound to the script of template Analytics Applications when generating new Analytics Applications. Note that Exclude is used to specifically prevent fields defined as optional bind parameters in the template Analytics Application script from being bound (these must either not have the optional quantity constraint specifiers or have a minimum quantity of 0).

        Can be one of: "Field""Variable""Property""Exclude""BDI"

      • templateAppVarNamestring
        Required
    • propertiesobject

      The complete set of possible properties for a link and their associated user context/value pairings.

      Show properties properties
      • disablearray of objects

        Set to true to temporarily disable the use of this Link to generate Analytics Applications.

        Show disable properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • disableboolean
          Required
      • menuLabelarray of objects

        The default label to use for this Link in the context of the selection Analytics Application's ODAG navigation menu.

        Show menuLabel properties
        • labelstring
          Required
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

      • genAppNamearray of objects

        An object that defines how to compute the name to use for the generated Analytics Application.

        Show genAppName properties
        • paramsarray of strings

          One of the allowed variables that, when evaluated at ODAG Request execution time, can be used to compute a part of a generated Analytics Application's name.

          Values may be any of: "templateAppName""userId""curYear""curMonth""curDay""curHr""curMin""curSec"

        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • formatStringstring
          Required

          A string containing the base text of the name to use for the generated Analytics Application and optionally any number of placeholder patterns of the form {N} where N is an integer greater than or equal to 0. The integer identifies the offset in the params array of an AppNameParameterV2 to evaluate at ODAG Request execution time to compute a fragment of the generated Analytics Application's name and insert it at the same position as its corresponding {N} placeholder.

      • genAppLimitarray of objects

        The limit to the number of Analytics Applications generated using this specific Link that can exist, and still not deleted, before the policy defined by the limitPolicy property (configured separately via LinkPropertiesV2.limitPolicy) is applied. If no limitPolicy is defined, the Restrict policy is assumed. If there is no value for this property applicable to the current user, there is no limit to the number of Analytics Applications that can be generated from this link for the user. The count of the current number of Analytics Applications is based on just those Analytics Applications generated by the current user (and still in existence) for this specific link. The minimum value for limit is 1.

        Show genAppLimit properties
        • limitinteger
          Required
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

      • limitPolicyarray of objects

        The action to take when the limit to the maximum number of generated Analytics Applications is reached.

        Show limitPolicy properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • limitPolicystring
          Required

          Can be one of: "Restrict""AutoDelete"

      • rowEstRangearray of objects
        Required

        A link property that defines a value range that the evaluated value of the row estimate measure must fall within in order to allow submissions of a request for the link.

        Show rowEstRange properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • lowBoundinteger

          The minimum value for the row estimate to enable usage of the link to perform an ODAG request. If the row estimate expression evaluates to a number lower than this value, the user will be prevented from submitting an ODAG request for this link. If this value is not supplied, no minimum is required.

        • highBoundinteger
          Required

          The maximum value for the row estimate to enable usage of the link. If the row estimate expression evaluates to a value larger than this value, the user will be prevented from submitting an ODAG request for this link.

      • targetSheetarray of objects

        An optional property that a Link creator can specify to cause the client to navigate to a specific sheet in the generated Analytics Application when opening the generated Analytics Application from the selection Analytics Application's navpoint panel.

        Show targetSheet properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • sheetIdstring
          Required

          The ID of the sheet to first navigate to when opening the generated Analytics Application from the selection Analytics Application.

        • sheetNamestring

          An optional, read-only property that is returned when retrieving a link if the targetSheet setting exists for the current user in the link's properties set and the sheet with that ID exists in the link's templateApp.

      • appOpenMethodarray of objects

        Sets the default method by which the newly generated Analytics Application is displayed when opened. The default is Tab to open a new tab in the same browser. Note that not all devices permit both methods so the chosen behavior may not apply if it is not supported on the user's device or browser.

        Show appOpenMethod properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • openMethodstring
          Required

          Can be one of: "Tab""Window"

      • appRetentionTimearray of objects

        A string that defines the length of time that a generated Analytics Application should be allowed to exist before it is automatically purged. The format must be in either ISO 8601 duration format or the text unlimited.

        Show appRetentionTime properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • retentionTimestring
          Required
      • overrideGenAppLimitarray of objects

        The limit to the number of Analytics Applications generated can be overridden using this specific Link that can exist, and still not deleted. The default value for this property is false. If this property value is set to true, then the limit value in genAppLimit is ignored.

        Show overrideGenAppLimit properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • overrideGenAppLimitboolean
    • rowEstExprstring

      The measure expression to be evaluated in the context of the selection Analytics Application for the link that estimates the number of records that will be qualified by the primary load query of the template Analytics Application. This expression must be valid in the context of the selection Analytics Application fields and update whenever the selection state of the selection Analytics Application changes.

    • dynamicViewboolean

      When true, the ODAG link is treated as a dynamic view. Analytics Application retention time is overridden to 24 hours and the maximum number of generated Analytics Applications is set to 1.

    • templateAppstring

      The system-assigned ID for an Analytics Application.

    • selectionAppstring
      Required

      The system-assigned ID for an Analytics Application.

    • includeScriptboolean

      Set to true to include the generated Analytics Application load script in the generated Analytics Application. The default value is false.

    • statusSettingstring

      The requested status transition to apply to a Link. New links are always created with status active; statusSetting is ignored. When updating a Link, if statusSetting is provided, the request updates the Link's status only (other fields in the payload are not applied). If omitted, the Link's status is not changed. statusSetting is an action, and it maps to the resulting status: - activate sets status to active. - disable sets status to disabled. - decommission sets status to decommissioned. If statusSetting has an unsupported value, the request returns an error and the Link is not updated. Links with status decommissioned cannot change status.

      Can be one of: "activate""disable""decommission"

Responses

201

ODAG link created successfully.

  • application/jsonobject

    The full state of a Link.

    Show application/json properties
    • idstring
      Required
    • namestring
      Required

      The name of a link.

    • ownerobject
      Required

      Condensed state of a user returned in state of ownable ODAG entities (for example, a link or request).

      Show owner properties
      • idstring
        Required

        The system-assigned ID for a user

      • namestring
        Required
      • subjectstring
        Required

        Identity subject used for identity mapping.

      • tenantidstring
        Required

        Tenant identifier.

    • statusstring
      Required

      The current status of a link.

      Can be one of: "active""disabled""decommissioned""incomplete"

    • bindingsarray of objects

      A collection of Bindings. Note that there can be multiple bindings having the same templateAppFieldName in a binding collection to denote different usages of the field's selection state in the context of the data prep logic but they all must have the same value for their range property.

      Show bindings properties
      • rangeobject

        The lower and upper bound for the permitted number of values that must exist in the selection Analytics Application's source parameter in order for this binding to be valid (and permit an ODAG Request to be submitted. If this property is not supplied, there is no constraint on either the lower or upper bound. To indicate that an exact number of selections are required, use the same number for both the lower and upper bound.

        Show range properties
        • lowerBoundinteger
        • upperBoundinteger
      • formattingobject

        A property value that describes the formatting of field values in a Binding. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

        Show formatting properties
        • quotestring

          The character to use for quote wrapping each of the bound values when formatting the source values associated with this binding. If this property is not supplied, a single quote character (') will be used by default. Use an empty string to suppress quote wrapping the values.

        • delimiterstring

          The character to use as a separator between two (or more) bound values when formatting the source values associated with this binding. If this property is not supplied, a comma character will be used by default. Use an empty string to indicate that no separator character should be used.

      • numericOnlyboolean

        Set to true to indicate that only numeric values from the selection Analytics Application source parameter should be used. The default value for this property, if left unspecified, is false. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

      • selectionStatesstring

        A combination of the letters S and/or O to indicate which values from the selection states selected or optional in the hypercube of the selection Analytics Application to harvest as bind values to inject into the script of the template Analytics Application at ODAG request submission time. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

      • selectAppParamNamestring

        The path (or name) of the selection Analytics Application field, variable, or property to obtain the list of values for this binding.

      • selectAppParamTypestring
        Required

        The different kinds of selection Analytics Application parameters whose values can be bound to the script of template Analytics Applications when generating new Analytics Applications. Note that Exclude is used to specifically prevent fields defined as optional bind parameters in the template Analytics Application script from being bound (these must either not have the optional quantity constraint specifiers or have a minimum quantity of 0).

        Can be one of: "Field""Variable""Property""Exclude""BDI"

      • templateAppVarNamestring
        Required
    • privilegesarray of strings
    • propertiesobject
      Required

      The complete set of possible properties for a link and their associated user context/value pairings.

      Show properties properties
      • disablearray of objects

        Set to true to temporarily disable the use of this Link to generate Analytics Applications.

        Show disable properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • disableboolean
          Required
      • menuLabelarray of objects

        The default label to use for this Link in the context of the selection Analytics Application's ODAG navigation menu.

        Show menuLabel properties
        • labelstring
          Required
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

      • genAppNamearray of objects

        An object that defines how to compute the name to use for the generated Analytics Application.

        Show genAppName properties
        • paramsarray of strings

          One of the allowed variables that, when evaluated at ODAG Request execution time, can be used to compute a part of a generated Analytics Application's name.

          Values may be any of: "templateAppName""userId""curYear""curMonth""curDay""curHr""curMin""curSec"

        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • formatStringstring
          Required

          A string containing the base text of the name to use for the generated Analytics Application and optionally any number of placeholder patterns of the form {N} where N is an integer greater than or equal to 0. The integer identifies the offset in the params array of an AppNameParameterV2 to evaluate at ODAG Request execution time to compute a fragment of the generated Analytics Application's name and insert it at the same position as its corresponding {N} placeholder.

      • genAppLimitarray of objects

        The limit to the number of Analytics Applications generated using this specific Link that can exist, and still not deleted, before the policy defined by the limitPolicy property (configured separately via LinkPropertiesV2.limitPolicy) is applied. If no limitPolicy is defined, the Restrict policy is assumed. If there is no value for this property applicable to the current user, there is no limit to the number of Analytics Applications that can be generated from this link for the user. The count of the current number of Analytics Applications is based on just those Analytics Applications generated by the current user (and still in existence) for this specific link. The minimum value for limit is 1.

        Show genAppLimit properties
        • limitinteger
          Required
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

      • limitPolicyarray of objects

        The action to take when the limit to the maximum number of generated Analytics Applications is reached.

        Show limitPolicy properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • limitPolicystring
          Required

          Can be one of: "Restrict""AutoDelete"

      • rowEstRangearray of objects
        Required

        A link property that defines a value range that the evaluated value of the row estimate measure must fall within in order to allow submissions of a request for the link.

        Show rowEstRange properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • lowBoundinteger

          The minimum value for the row estimate to enable usage of the link to perform an ODAG request. If the row estimate expression evaluates to a number lower than this value, the user will be prevented from submitting an ODAG request for this link. If this value is not supplied, no minimum is required.

        • highBoundinteger
          Required

          The maximum value for the row estimate to enable usage of the link. If the row estimate expression evaluates to a value larger than this value, the user will be prevented from submitting an ODAG request for this link.

      • targetSheetarray of objects

        An optional property that a Link creator can specify to cause the client to navigate to a specific sheet in the generated Analytics Application when opening the generated Analytics Application from the selection Analytics Application's navpoint panel.

        Show targetSheet properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • sheetIdstring
          Required

          The ID of the sheet to first navigate to when opening the generated Analytics Application from the selection Analytics Application.

        • sheetNamestring

          An optional, read-only property that is returned when retrieving a link if the targetSheet setting exists for the current user in the link's properties set and the sheet with that ID exists in the link's templateApp.

      • appOpenMethodarray of objects

        Sets the default method by which the newly generated Analytics Application is displayed when opened. The default is Tab to open a new tab in the same browser. Note that not all devices permit both methods so the chosen behavior may not apply if it is not supported on the user's device or browser.

        Show appOpenMethod properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • openMethodstring
          Required

          Can be one of: "Tab""Window"

      • appRetentionTimearray of objects

        A string that defines the length of time that a generated Analytics Application should be allowed to exist before it is automatically purged. The format must be in either ISO 8601 duration format or the text unlimited.

        Show appRetentionTime properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • retentionTimestring
          Required
      • overrideGenAppLimitarray of objects

        The limit to the number of Analytics Applications generated can be overridden using this specific Link that can exist, and still not deleted. The default value for this property is false. If this property value is set to true, then the limit value in genAppLimit is ignored.

        Show overrideGenAppLimit properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • overrideGenAppLimitboolean
    • rowEstExprstring
      Required

      The measure expression to be evaluated in the context of the selection Analytics Application for the link that estimates the number of records that will be qualified by the primary load query of the template Analytics Application. This expression must be valid in the context of the selection Analytics Application fields and update whenever the selection state of the selection Analytics Application changes.

    • createdDatestring
      Required
    • dynamicViewboolean

      When true, the ODAG link is treated as a dynamic view.

    • templateAppobject
      Required

      Condensed state of an Analytics Application returned in state for Link, LinkUsage, Request, and ODAG Apps GET calls.

      Show templateApp properties
      • idstring
        Required

        The system-assigned ID for an Analytics Application.

      • namestring
        Required

        The name of an Analytics Application.

    • modifiedDatestring
    • includeScriptboolean

      Set to true to include the generated Analytics Application load script in the generated Analytics Application. The default value is false.

    • modifiedByUserobject

      Condensed state of a user returned in state of ownable ODAG entities (for example, a link or request).

      Show modifiedByUser properties
      • idstring
        Required

        The system-assigned ID for a user

      • namestring
        Required
      • subjectstring
        Required

        Identity subject used for identity mapping.

      • tenantidstring
        Required

        Tenant identifier.

    • genAppAccessibleboolean

      Only returned on LinkGet and set to true if user will have access to an Analytics Application generated by this link.

    • templateAppChartObjectsarray of objects

400

Invalid link payload (see detailed error).

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

403

Forbidden.

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

404

Invalid referenced object ID (see detailed error message).

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

POST /api/analytics/odag-links
// qlik-api has not implemented support for `POST /api/analytics/odag-links` yet.
// In the meantime, you can use fetch like this:
const response = await fetch(
'/api/analytics/odag-links',
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
name: 'ODAG Link name',
bindings: [
{
range: {
lowerBound: 42,
upperBound: 42,
},
formatting: {
quote: "'",
delimiter: ',',
},
numericOnly: false,
selectionStates: 'string',
selectAppParamName: 'string',
selectAppParamType: 'Field',
templateAppVarName: 'string',
},
],
properties: {
disable: [
{ context: 'string', disable: true },
],
menuLabel: [
{ label: 'string', context: 'string' },
],
genAppName: [
{
params: ['templateAppName'],
context: 'string',
formatString: 'string',
},
],
genAppLimit: [
{ limit: 42, context: 'string' },
],
limitPolicy: [
{
context: 'string',
limitPolicy: 'Restrict',
},
],
rowEstRange: [
{
context: 'string',
lowBound: 42,
highBound: 42,
},
],
targetSheet: [
{
context: 'string',
sheetId: 'string',
sheetName: 'string',
},
],
appOpenMethod: [
{
context: 'string',
openMethod: 'Tab',
},
],
appRetentionTime: [
{
context: 'string',
retentionTime: 'string',
},
],
overrideGenAppLimit: [
{
context: 'string',
overrideGenAppLimit: false,
},
],
},
rowEstExpr: 'string',
dynamicView: true,
templateApp: 'string',
selectionApp: 'string',
includeScript: false,
statusSetting: 'activate',
}),
},
)
This API is not included yet in qlik-cli
curl "https://{tenant}.{region}.qlikcloud.com/api/analytics/odag-links" \
-X POST \
-H "Content-type: application/json" \
-H "Authorization: Bearer <access_token>" \
-d '{"name":"ODAG Link name","bindings":[{"range":{"lowerBound":42,"upperBound":42},"formatting":{"quote":"'\''","delimiter":","},"numericOnly":false,"selectionStates":"string","selectAppParamName":"string","selectAppParamType":"Field","templateAppVarName":"string"}],"properties":{"disable":[{"context":"string","disable":true}],"menuLabel":[{"label":"string","context":"string"}],"genAppName":[{"params":["templateAppName"],"context":"string","formatString":"string"}],"genAppLimit":[{"limit":42,"context":"string"}],"limitPolicy":[{"context":"string","limitPolicy":"Restrict"}],"rowEstRange":[{"context":"string","lowBound":42,"highBound":42}],"targetSheet":[{"context":"string","sheetId":"string","sheetName":"string"}],"appOpenMethod":[{"context":"string","openMethod":"Tab"}],"appRetentionTime":[{"context":"string","retentionTime":"string"}],"overrideGenAppLimit":[{"context":"string","overrideGenAppLimit":false}]},"rowEstExpr":"string","dynamicView":true,"templateApp":"string","selectionApp":"string","includeScript":false,"statusSetting":"activate"}'

Example Response

{
"id": "string",
"name": "ODAG Link name",
"owner": {
"id": "wcgIs6wGcDdyzep9QmyopWvNH1FJTOhh",
"name": "string",
"subject": "string",
"tenantid": "string"
},
"status": "active",
"bindings": [
{
"range": {
"lowerBound": 42,
"upperBound": 42
},
"formatting": {
"quote": "'",
"delimiter": ","
},
"numericOnly": false,
"selectionStates": "string",
"selectAppParamName": "string",
"selectAppParamType": "Field",
"templateAppVarName": "string"
}
],
"privileges": [
"string"
],
"properties": {
"disable": [
{
"context": "string",
"disable": true
}
],
"menuLabel": [
{
"label": "string",
"context": "string"
}
],
"genAppName": [
{
"params": [
"templateAppName"
],
"context": "string",
"formatString": "string"
}
],
"genAppLimit": [
{
"limit": 42,
"context": "string"
}
],
"limitPolicy": [
{
"context": "string",
"limitPolicy": "Restrict"
}
],
"rowEstRange": [
{
"context": "string",
"lowBound": 42,
"highBound": 42
}
],
"targetSheet": [
{
"context": "string",
"sheetId": "string",
"sheetName": "string"
}
],
"appOpenMethod": [
{
"context": "string",
"openMethod": "Tab"
}
],
"appRetentionTime": [
{
"context": "string",
"retentionTime": "string"
}
],
"overrideGenAppLimit": [
{
"context": "string",
"overrideGenAppLimit": false
}
]
},
"rowEstExpr": "string",
"createdDate": "2025-11-11T13:45:30Z",
"dynamicView": true,
"templateApp": {
"id": "string",
"name": "appname"
},
"modifiedDate": "2025-11-11T13:45:30Z",
"includeScript": false,
"modifiedByUser": {
"id": "wcgIs6wGcDdyzep9QmyopWvNH1FJTOhh",
"name": "string",
"subject": "string",
"tenantid": "string"
},
"genAppAccessible": true,
"templateAppChartObjects": [
{}
]
}

Retrieves details of a specific ODAG link, including bindings, properties, status, and template Analytics Application charts. Use this to review link configuration or verify permissions before generating Analytics Applications.

Facts

Rate limit Tier 1 (1000 requests per minute)

Query Parameters

  • includeChartsboolean

    Determines whether master charts of the template Analytics Application are included in the response.

Path Parameters

  • linkIdstring
    Required

    The ID of the link.

Responses

200

Successful response.

  • application/jsonobject

    The full state of a Link.

    Show application/json properties
    • idstring
      Required
    • namestring
      Required

      The name of a link.

    • ownerobject
      Required

      Condensed state of a user returned in state of ownable ODAG entities (for example, a link or request).

      Show owner properties
      • idstring
        Required

        The system-assigned ID for a user

      • namestring
        Required
      • subjectstring
        Required

        Identity subject used for identity mapping.

      • tenantidstring
        Required

        Tenant identifier.

    • statusstring
      Required

      The current status of a link.

      Can be one of: "active""disabled""decommissioned""incomplete"

    • bindingsarray of objects

      A collection of Bindings. Note that there can be multiple bindings having the same templateAppFieldName in a binding collection to denote different usages of the field's selection state in the context of the data prep logic but they all must have the same value for their range property.

      Show bindings properties
      • rangeobject

        The lower and upper bound for the permitted number of values that must exist in the selection Analytics Application's source parameter in order for this binding to be valid (and permit an ODAG Request to be submitted. If this property is not supplied, there is no constraint on either the lower or upper bound. To indicate that an exact number of selections are required, use the same number for both the lower and upper bound.

        Show range properties
        • lowerBoundinteger
        • upperBoundinteger
      • formattingobject

        A property value that describes the formatting of field values in a Binding. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

        Show formatting properties
        • quotestring

          The character to use for quote wrapping each of the bound values when formatting the source values associated with this binding. If this property is not supplied, a single quote character (') will be used by default. Use an empty string to suppress quote wrapping the values.

        • delimiterstring

          The character to use as a separator between two (or more) bound values when formatting the source values associated with this binding. If this property is not supplied, a comma character will be used by default. Use an empty string to indicate that no separator character should be used.

      • numericOnlyboolean

        Set to true to indicate that only numeric values from the selection Analytics Application source parameter should be used. The default value for this property, if left unspecified, is false. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

      • selectionStatesstring

        A combination of the letters S and/or O to indicate which values from the selection states selected or optional in the hypercube of the selection Analytics Application to harvest as bind values to inject into the script of the template Analytics Application at ODAG request submission time. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

      • selectAppParamNamestring

        The path (or name) of the selection Analytics Application field, variable, or property to obtain the list of values for this binding.

      • selectAppParamTypestring
        Required

        The different kinds of selection Analytics Application parameters whose values can be bound to the script of template Analytics Applications when generating new Analytics Applications. Note that Exclude is used to specifically prevent fields defined as optional bind parameters in the template Analytics Application script from being bound (these must either not have the optional quantity constraint specifiers or have a minimum quantity of 0).

        Can be one of: "Field""Variable""Property""Exclude""BDI"

      • templateAppVarNamestring
        Required
    • privilegesarray of strings
    • propertiesobject
      Required

      The complete set of possible properties for a link and their associated user context/value pairings.

      Show properties properties
      • disablearray of objects

        Set to true to temporarily disable the use of this Link to generate Analytics Applications.

        Show disable properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • disableboolean
          Required
      • menuLabelarray of objects

        The default label to use for this Link in the context of the selection Analytics Application's ODAG navigation menu.

        Show menuLabel properties
        • labelstring
          Required
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

      • genAppNamearray of objects

        An object that defines how to compute the name to use for the generated Analytics Application.

        Show genAppName properties
        • paramsarray of strings

          One of the allowed variables that, when evaluated at ODAG Request execution time, can be used to compute a part of a generated Analytics Application's name.

          Values may be any of: "templateAppName""userId""curYear""curMonth""curDay""curHr""curMin""curSec"

        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • formatStringstring
          Required

          A string containing the base text of the name to use for the generated Analytics Application and optionally any number of placeholder patterns of the form {N} where N is an integer greater than or equal to 0. The integer identifies the offset in the params array of an AppNameParameterV2 to evaluate at ODAG Request execution time to compute a fragment of the generated Analytics Application's name and insert it at the same position as its corresponding {N} placeholder.

      • genAppLimitarray of objects

        The limit to the number of Analytics Applications generated using this specific Link that can exist, and still not deleted, before the policy defined by the limitPolicy property (configured separately via LinkPropertiesV2.limitPolicy) is applied. If no limitPolicy is defined, the Restrict policy is assumed. If there is no value for this property applicable to the current user, there is no limit to the number of Analytics Applications that can be generated from this link for the user. The count of the current number of Analytics Applications is based on just those Analytics Applications generated by the current user (and still in existence) for this specific link. The minimum value for limit is 1.

        Show genAppLimit properties
        • limitinteger
          Required
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

      • limitPolicyarray of objects

        The action to take when the limit to the maximum number of generated Analytics Applications is reached.

        Show limitPolicy properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • limitPolicystring
          Required

          Can be one of: "Restrict""AutoDelete"

      • rowEstRangearray of objects
        Required

        A link property that defines a value range that the evaluated value of the row estimate measure must fall within in order to allow submissions of a request for the link.

        Show rowEstRange properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • lowBoundinteger

          The minimum value for the row estimate to enable usage of the link to perform an ODAG request. If the row estimate expression evaluates to a number lower than this value, the user will be prevented from submitting an ODAG request for this link. If this value is not supplied, no minimum is required.

        • highBoundinteger
          Required

          The maximum value for the row estimate to enable usage of the link. If the row estimate expression evaluates to a value larger than this value, the user will be prevented from submitting an ODAG request for this link.

      • targetSheetarray of objects

        An optional property that a Link creator can specify to cause the client to navigate to a specific sheet in the generated Analytics Application when opening the generated Analytics Application from the selection Analytics Application's navpoint panel.

        Show targetSheet properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • sheetIdstring
          Required

          The ID of the sheet to first navigate to when opening the generated Analytics Application from the selection Analytics Application.

        • sheetNamestring

          An optional, read-only property that is returned when retrieving a link if the targetSheet setting exists for the current user in the link's properties set and the sheet with that ID exists in the link's templateApp.

      • appOpenMethodarray of objects

        Sets the default method by which the newly generated Analytics Application is displayed when opened. The default is Tab to open a new tab in the same browser. Note that not all devices permit both methods so the chosen behavior may not apply if it is not supported on the user's device or browser.

        Show appOpenMethod properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • openMethodstring
          Required

          Can be one of: "Tab""Window"

      • appRetentionTimearray of objects

        A string that defines the length of time that a generated Analytics Application should be allowed to exist before it is automatically purged. The format must be in either ISO 8601 duration format or the text unlimited.

        Show appRetentionTime properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • retentionTimestring
          Required
      • overrideGenAppLimitarray of objects

        The limit to the number of Analytics Applications generated can be overridden using this specific Link that can exist, and still not deleted. The default value for this property is false. If this property value is set to true, then the limit value in genAppLimit is ignored.

        Show overrideGenAppLimit properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • overrideGenAppLimitboolean
    • rowEstExprstring
      Required

      The measure expression to be evaluated in the context of the selection Analytics Application for the link that estimates the number of records that will be qualified by the primary load query of the template Analytics Application. This expression must be valid in the context of the selection Analytics Application fields and update whenever the selection state of the selection Analytics Application changes.

    • createdDatestring
      Required
    • dynamicViewboolean

      When true, the ODAG link is treated as a dynamic view.

    • templateAppobject
      Required

      Condensed state of an Analytics Application returned in state for Link, LinkUsage, Request, and ODAG Apps GET calls.

      Show templateApp properties
      • idstring
        Required

        The system-assigned ID for an Analytics Application.

      • namestring
        Required

        The name of an Analytics Application.

    • modifiedDatestring
    • includeScriptboolean

      Set to true to include the generated Analytics Application load script in the generated Analytics Application. The default value is false.

    • modifiedByUserobject

      Condensed state of a user returned in state of ownable ODAG entities (for example, a link or request).

      Show modifiedByUser properties
      • idstring
        Required

        The system-assigned ID for a user

      • namestring
        Required
      • subjectstring
        Required

        Identity subject used for identity mapping.

      • tenantidstring
        Required

        Tenant identifier.

    • genAppAccessibleboolean

      Only returned on LinkGet and set to true if user will have access to an Analytics Application generated by this link.

    • templateAppChartObjectsarray of objects

403

Forbidden.

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

404

Invalid link ID (see detailed error).

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

GET /api/analytics/odag-links/{linkId}
// qlik-api has not implemented support for `GET /api/analytics/odag-links/{linkId}` yet.
// In the meantime, you can use fetch like this:
const response = await fetch(
'/api/analytics/odag-links/{linkId}',
{
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
},
)
This API is not included yet in qlik-cli
curl "https://{tenant}.{region}.qlikcloud.com/api/analytics/odag-links/{linkId}" \
-H "Authorization: Bearer <access_token>"

Example Response

{
"id": "string",
"name": "ODAG Link name",
"owner": {
"id": "wcgIs6wGcDdyzep9QmyopWvNH1FJTOhh",
"name": "string",
"subject": "string",
"tenantid": "string"
},
"status": "active",
"bindings": [
{
"range": {
"lowerBound": 42,
"upperBound": 42
},
"formatting": {
"quote": "'",
"delimiter": ","
},
"numericOnly": false,
"selectionStates": "string",
"selectAppParamName": "string",
"selectAppParamType": "Field",
"templateAppVarName": "string"
}
],
"privileges": [
"string"
],
"properties": {
"disable": [
{
"context": "string",
"disable": true
}
],
"menuLabel": [
{
"label": "string",
"context": "string"
}
],
"genAppName": [
{
"params": [
"templateAppName"
],
"context": "string",
"formatString": "string"
}
],
"genAppLimit": [
{
"limit": 42,
"context": "string"
}
],
"limitPolicy": [
{
"context": "string",
"limitPolicy": "Restrict"
}
],
"rowEstRange": [
{
"context": "string",
"lowBound": 42,
"highBound": 42
}
],
"targetSheet": [
{
"context": "string",
"sheetId": "string",
"sheetName": "string"
}
],
"appOpenMethod": [
{
"context": "string",
"openMethod": "Tab"
}
],
"appRetentionTime": [
{
"context": "string",
"retentionTime": "string"
}
],
"overrideGenAppLimit": [
{
"context": "string",
"overrideGenAppLimit": false
}
]
},
"rowEstExpr": "string",
"createdDate": "2025-11-11T13:45:30Z",
"dynamicView": true,
"templateApp": {
"id": "string",
"name": "appname"
},
"modifiedDate": "2025-11-11T13:45:30Z",
"includeScript": false,
"modifiedByUser": {
"id": "wcgIs6wGcDdyzep9QmyopWvNH1FJTOhh",
"name": "string",
"subject": "string",
"tenantid": "string"
},
"genAppAccessible": true,
"templateAppChartObjects": [
{}
]
}

Modifies ODAG link configuration including bindings, properties, status, and template Analytics Application reference. You can re-scan the template Analytics Application script to auto-detect binding patterns or override specific settings. If statusSetting is provided, the request updates only the link status (other payload fields are not applied).

Facts

Rate limit Tier 2 (100 requests per minute)

Query Parameters

  • includeChartsboolean

    Determines whether master charts of the template Analytics Application are included in the response.

Path Parameters

  • linkIdstring
    Required

    The ID of the link.

Request Body

Required

A JSON payload containing the updated configuration for the ODAG link.

  • application/jsonobject

    An object that defines the properties of a Link to be modified.

    Show application/json properties
    • namestring
      Required

      The name of a link.

    • ownerIdstring

      The system-assigned ID for a user

    • bindingsarray of objects

      A collection of Bindings. Note that there can be multiple bindings having the same templateAppFieldName in a binding collection to denote different usages of the field's selection state in the context of the data prep logic but they all must have the same value for their range property.

      Show bindings properties
      • rangeobject

        The lower and upper bound for the permitted number of values that must exist in the selection Analytics Application's source parameter in order for this binding to be valid (and permit an ODAG Request to be submitted. If this property is not supplied, there is no constraint on either the lower or upper bound. To indicate that an exact number of selections are required, use the same number for both the lower and upper bound.

        Show range properties
        • lowerBoundinteger
        • upperBoundinteger
      • formattingobject

        A property value that describes the formatting of field values in a Binding. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

        Show formatting properties
        • quotestring

          The character to use for quote wrapping each of the bound values when formatting the source values associated with this binding. If this property is not supplied, a single quote character (') will be used by default. Use an empty string to suppress quote wrapping the values.

        • delimiterstring

          The character to use as a separator between two (or more) bound values when formatting the source values associated with this binding. If this property is not supplied, a comma character will be used by default. Use an empty string to indicate that no separator character should be used.

      • numericOnlyboolean

        Set to true to indicate that only numeric values from the selection Analytics Application source parameter should be used. The default value for this property, if left unspecified, is false. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

      • selectionStatesstring

        A combination of the letters S and/or O to indicate which values from the selection states selected or optional in the hypercube of the selection Analytics Application to harvest as bind values to inject into the script of the template Analytics Application at ODAG request submission time. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

      • selectAppParamNamestring

        The path (or name) of the selection Analytics Application field, variable, or property to obtain the list of values for this binding.

      • selectAppParamTypestring
        Required

        The different kinds of selection Analytics Application parameters whose values can be bound to the script of template Analytics Applications when generating new Analytics Applications. Note that Exclude is used to specifically prevent fields defined as optional bind parameters in the template Analytics Application script from being bound (these must either not have the optional quantity constraint specifiers or have a minimum quantity of 0).

        Can be one of: "Field""Variable""Property""Exclude""BDI"

      • templateAppVarNamestring
        Required
    • propertiesobject

      The complete set of possible properties for a link and their associated user context/value pairings.

      Show properties properties
      • disablearray of objects

        Set to true to temporarily disable the use of this Link to generate Analytics Applications.

        Show disable properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • disableboolean
          Required
      • menuLabelarray of objects

        The default label to use for this Link in the context of the selection Analytics Application's ODAG navigation menu.

        Show menuLabel properties
        • labelstring
          Required
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

      • genAppNamearray of objects

        An object that defines how to compute the name to use for the generated Analytics Application.

        Show genAppName properties
        • paramsarray of strings

          One of the allowed variables that, when evaluated at ODAG Request execution time, can be used to compute a part of a generated Analytics Application's name.

          Values may be any of: "templateAppName""userId""curYear""curMonth""curDay""curHr""curMin""curSec"

        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • formatStringstring
          Required

          A string containing the base text of the name to use for the generated Analytics Application and optionally any number of placeholder patterns of the form {N} where N is an integer greater than or equal to 0. The integer identifies the offset in the params array of an AppNameParameterV2 to evaluate at ODAG Request execution time to compute a fragment of the generated Analytics Application's name and insert it at the same position as its corresponding {N} placeholder.

      • genAppLimitarray of objects

        The limit to the number of Analytics Applications generated using this specific Link that can exist, and still not deleted, before the policy defined by the limitPolicy property (configured separately via LinkPropertiesV2.limitPolicy) is applied. If no limitPolicy is defined, the Restrict policy is assumed. If there is no value for this property applicable to the current user, there is no limit to the number of Analytics Applications that can be generated from this link for the user. The count of the current number of Analytics Applications is based on just those Analytics Applications generated by the current user (and still in existence) for this specific link. The minimum value for limit is 1.

        Show genAppLimit properties
        • limitinteger
          Required
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

      • limitPolicyarray of objects

        The action to take when the limit to the maximum number of generated Analytics Applications is reached.

        Show limitPolicy properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • limitPolicystring
          Required

          Can be one of: "Restrict""AutoDelete"

      • rowEstRangearray of objects
        Required

        A link property that defines a value range that the evaluated value of the row estimate measure must fall within in order to allow submissions of a request for the link.

        Show rowEstRange properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • lowBoundinteger

          The minimum value for the row estimate to enable usage of the link to perform an ODAG request. If the row estimate expression evaluates to a number lower than this value, the user will be prevented from submitting an ODAG request for this link. If this value is not supplied, no minimum is required.

        • highBoundinteger
          Required

          The maximum value for the row estimate to enable usage of the link. If the row estimate expression evaluates to a value larger than this value, the user will be prevented from submitting an ODAG request for this link.

      • targetSheetarray of objects

        An optional property that a Link creator can specify to cause the client to navigate to a specific sheet in the generated Analytics Application when opening the generated Analytics Application from the selection Analytics Application's navpoint panel.

        Show targetSheet properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • sheetIdstring
          Required

          The ID of the sheet to first navigate to when opening the generated Analytics Application from the selection Analytics Application.

        • sheetNamestring

          An optional, read-only property that is returned when retrieving a link if the targetSheet setting exists for the current user in the link's properties set and the sheet with that ID exists in the link's templateApp.

      • appOpenMethodarray of objects

        Sets the default method by which the newly generated Analytics Application is displayed when opened. The default is Tab to open a new tab in the same browser. Note that not all devices permit both methods so the chosen behavior may not apply if it is not supported on the user's device or browser.

        Show appOpenMethod properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • openMethodstring
          Required

          Can be one of: "Tab""Window"

      • appRetentionTimearray of objects

        A string that defines the length of time that a generated Analytics Application should be allowed to exist before it is automatically purged. The format must be in either ISO 8601 duration format or the text unlimited.

        Show appRetentionTime properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • retentionTimestring
          Required
      • overrideGenAppLimitarray of objects

        The limit to the number of Analytics Applications generated can be overridden using this specific Link that can exist, and still not deleted. The default value for this property is false. If this property value is set to true, then the limit value in genAppLimit is ignored.

        Show overrideGenAppLimit properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • overrideGenAppLimitboolean
    • rowEstExprstring

      The measure expression to be evaluated in the context of the selection Analytics Application for the link that estimates the number of records that will be qualified by the primary load query of the template Analytics Application. This expression must be valid in the context of the selection Analytics Application fields and update whenever the selection state of the selection Analytics Application changes.

    • dynamicViewboolean

      When true, the ODAG link is treated as a dynamic view. Analytics Application retention time is overridden to 24 hours and the maximum number of generated Analytics Applications is set to 1.

    • templateAppstring

      The system-assigned ID for an Analytics Application.

    • selectionAppstring
      Required

      The system-assigned ID for an Analytics Application.

    • includeScriptboolean

      Set to true to include the generated Analytics Application load script in the generated Analytics Application. The default value is false.

    • statusSettingstring

      The requested status transition to apply to a Link. New links are always created with status active; statusSetting is ignored. When updating a Link, if statusSetting is provided, the request updates the Link's status only (other fields in the payload are not applied). If omitted, the Link's status is not changed. statusSetting is an action, and it maps to the resulting status: - activate sets status to active. - disable sets status to disabled. - decommission sets status to decommissioned. If statusSetting has an unsupported value, the request returns an error and the Link is not updated. Links with status decommissioned cannot change status.

      Can be one of: "activate""disable""decommission"

Responses

200

ODAG link updated successfully.

  • application/jsonobject

    The full state of a Link.

    Show application/json properties
    • idstring
      Required
    • namestring
      Required

      The name of a link.

    • ownerobject
      Required

      Condensed state of a user returned in state of ownable ODAG entities (for example, a link or request).

      Show owner properties
      • idstring
        Required

        The system-assigned ID for a user

      • namestring
        Required
      • subjectstring
        Required

        Identity subject used for identity mapping.

      • tenantidstring
        Required

        Tenant identifier.

    • statusstring
      Required

      The current status of a link.

      Can be one of: "active""disabled""decommissioned""incomplete"

    • bindingsarray of objects

      A collection of Bindings. Note that there can be multiple bindings having the same templateAppFieldName in a binding collection to denote different usages of the field's selection state in the context of the data prep logic but they all must have the same value for their range property.

      Show bindings properties
      • rangeobject

        The lower and upper bound for the permitted number of values that must exist in the selection Analytics Application's source parameter in order for this binding to be valid (and permit an ODAG Request to be submitted. If this property is not supplied, there is no constraint on either the lower or upper bound. To indicate that an exact number of selections are required, use the same number for both the lower and upper bound.

        Show range properties
        • lowerBoundinteger
        • upperBoundinteger
      • formattingobject

        A property value that describes the formatting of field values in a Binding. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

        Show formatting properties
        • quotestring

          The character to use for quote wrapping each of the bound values when formatting the source values associated with this binding. If this property is not supplied, a single quote character (') will be used by default. Use an empty string to suppress quote wrapping the values.

        • delimiterstring

          The character to use as a separator between two (or more) bound values when formatting the source values associated with this binding. If this property is not supplied, a comma character will be used by default. Use an empty string to indicate that no separator character should be used.

      • numericOnlyboolean

        Set to true to indicate that only numeric values from the selection Analytics Application source parameter should be used. The default value for this property, if left unspecified, is false. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

      • selectionStatesstring

        A combination of the letters S and/or O to indicate which values from the selection states selected or optional in the hypercube of the selection Analytics Application to harvest as bind values to inject into the script of the template Analytics Application at ODAG request submission time. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

      • selectAppParamNamestring

        The path (or name) of the selection Analytics Application field, variable, or property to obtain the list of values for this binding.

      • selectAppParamTypestring
        Required

        The different kinds of selection Analytics Application parameters whose values can be bound to the script of template Analytics Applications when generating new Analytics Applications. Note that Exclude is used to specifically prevent fields defined as optional bind parameters in the template Analytics Application script from being bound (these must either not have the optional quantity constraint specifiers or have a minimum quantity of 0).

        Can be one of: "Field""Variable""Property""Exclude""BDI"

      • templateAppVarNamestring
        Required
    • privilegesarray of strings
    • propertiesobject
      Required

      The complete set of possible properties for a link and their associated user context/value pairings.

      Show properties properties
      • disablearray of objects

        Set to true to temporarily disable the use of this Link to generate Analytics Applications.

        Show disable properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • disableboolean
          Required
      • menuLabelarray of objects

        The default label to use for this Link in the context of the selection Analytics Application's ODAG navigation menu.

        Show menuLabel properties
        • labelstring
          Required
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

      • genAppNamearray of objects

        An object that defines how to compute the name to use for the generated Analytics Application.

        Show genAppName properties
        • paramsarray of strings

          One of the allowed variables that, when evaluated at ODAG Request execution time, can be used to compute a part of a generated Analytics Application's name.

          Values may be any of: "templateAppName""userId""curYear""curMonth""curDay""curHr""curMin""curSec"

        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • formatStringstring
          Required

          A string containing the base text of the name to use for the generated Analytics Application and optionally any number of placeholder patterns of the form {N} where N is an integer greater than or equal to 0. The integer identifies the offset in the params array of an AppNameParameterV2 to evaluate at ODAG Request execution time to compute a fragment of the generated Analytics Application's name and insert it at the same position as its corresponding {N} placeholder.

      • genAppLimitarray of objects

        The limit to the number of Analytics Applications generated using this specific Link that can exist, and still not deleted, before the policy defined by the limitPolicy property (configured separately via LinkPropertiesV2.limitPolicy) is applied. If no limitPolicy is defined, the Restrict policy is assumed. If there is no value for this property applicable to the current user, there is no limit to the number of Analytics Applications that can be generated from this link for the user. The count of the current number of Analytics Applications is based on just those Analytics Applications generated by the current user (and still in existence) for this specific link. The minimum value for limit is 1.

        Show genAppLimit properties
        • limitinteger
          Required
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

      • limitPolicyarray of objects

        The action to take when the limit to the maximum number of generated Analytics Applications is reached.

        Show limitPolicy properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • limitPolicystring
          Required

          Can be one of: "Restrict""AutoDelete"

      • rowEstRangearray of objects
        Required

        A link property that defines a value range that the evaluated value of the row estimate measure must fall within in order to allow submissions of a request for the link.

        Show rowEstRange properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • lowBoundinteger

          The minimum value for the row estimate to enable usage of the link to perform an ODAG request. If the row estimate expression evaluates to a number lower than this value, the user will be prevented from submitting an ODAG request for this link. If this value is not supplied, no minimum is required.

        • highBoundinteger
          Required

          The maximum value for the row estimate to enable usage of the link. If the row estimate expression evaluates to a value larger than this value, the user will be prevented from submitting an ODAG request for this link.

      • targetSheetarray of objects

        An optional property that a Link creator can specify to cause the client to navigate to a specific sheet in the generated Analytics Application when opening the generated Analytics Application from the selection Analytics Application's navpoint panel.

        Show targetSheet properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • sheetIdstring
          Required

          The ID of the sheet to first navigate to when opening the generated Analytics Application from the selection Analytics Application.

        • sheetNamestring

          An optional, read-only property that is returned when retrieving a link if the targetSheet setting exists for the current user in the link's properties set and the sheet with that ID exists in the link's templateApp.

      • appOpenMethodarray of objects

        Sets the default method by which the newly generated Analytics Application is displayed when opened. The default is Tab to open a new tab in the same browser. Note that not all devices permit both methods so the chosen behavior may not apply if it is not supported on the user's device or browser.

        Show appOpenMethod properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • openMethodstring
          Required

          Can be one of: "Tab""Window"

      • appRetentionTimearray of objects

        A string that defines the length of time that a generated Analytics Application should be allowed to exist before it is automatically purged. The format must be in either ISO 8601 duration format or the text unlimited.

        Show appRetentionTime properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • retentionTimestring
          Required
      • overrideGenAppLimitarray of objects

        The limit to the number of Analytics Applications generated can be overridden using this specific Link that can exist, and still not deleted. The default value for this property is false. If this property value is set to true, then the limit value in genAppLimit is ignored.

        Show overrideGenAppLimit properties
        • contextstring
          Required

          An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • overrideGenAppLimitboolean
    • rowEstExprstring
      Required

      The measure expression to be evaluated in the context of the selection Analytics Application for the link that estimates the number of records that will be qualified by the primary load query of the template Analytics Application. This expression must be valid in the context of the selection Analytics Application fields and update whenever the selection state of the selection Analytics Application changes.

    • createdDatestring
      Required
    • dynamicViewboolean

      When true, the ODAG link is treated as a dynamic view.

    • templateAppobject
      Required

      Condensed state of an Analytics Application returned in state for Link, LinkUsage, Request, and ODAG Apps GET calls.

      Show templateApp properties
      • idstring
        Required

        The system-assigned ID for an Analytics Application.

      • namestring
        Required

        The name of an Analytics Application.

    • modifiedDatestring
    • includeScriptboolean

      Set to true to include the generated Analytics Application load script in the generated Analytics Application. The default value is false.

    • modifiedByUserobject

      Condensed state of a user returned in state of ownable ODAG entities (for example, a link or request).

      Show modifiedByUser properties
      • idstring
        Required

        The system-assigned ID for a user

      • namestring
        Required
      • subjectstring
        Required

        Identity subject used for identity mapping.

      • tenantidstring
        Required

        Tenant identifier.

    • genAppAccessibleboolean

      Only returned on LinkGet and set to true if user will have access to an Analytics Application generated by this link.

    • templateAppChartObjectsarray of objects

403

Forbidden.

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

404

Link not found, ODAG not enabled, or invalid referenced object.

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

PUT /api/analytics/odag-links/{linkId}
// qlik-api has not implemented support for `PUT /api/analytics/odag-links/{linkId}` yet.
// In the meantime, you can use fetch like this:
const response = await fetch(
'/api/analytics/odag-links/{linkId}',
{
method: 'PUT',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
name: 'ODAG Link name',
ownerId: 'wcgIs6wGcDdyzep9QmyopWvNH1FJTOhh',
bindings: [
{
range: {
lowerBound: 42,
upperBound: 42,
},
formatting: {
quote: "'",
delimiter: ',',
},
numericOnly: false,
selectionStates: 'string',
selectAppParamName: 'string',
selectAppParamType: 'Field',
templateAppVarName: 'string',
},
],
properties: {
disable: [
{ context: 'string', disable: true },
],
menuLabel: [
{ label: 'string', context: 'string' },
],
genAppName: [
{
params: ['templateAppName'],
context: 'string',
formatString: 'string',
},
],
genAppLimit: [
{ limit: 42, context: 'string' },
],
limitPolicy: [
{
context: 'string',
limitPolicy: 'Restrict',
},
],
rowEstRange: [
{
context: 'string',
lowBound: 42,
highBound: 42,
},
],
targetSheet: [
{
context: 'string',
sheetId: 'string',
sheetName: 'string',
},
],
appOpenMethod: [
{
context: 'string',
openMethod: 'Tab',
},
],
appRetentionTime: [
{
context: 'string',
retentionTime: 'string',
},
],
overrideGenAppLimit: [
{
context: 'string',
overrideGenAppLimit: false,
},
],
},
rowEstExpr: 'string',
dynamicView: true,
templateApp: 'string',
selectionApp: 'string',
includeScript: false,
statusSetting: 'activate',
}),
},
)
This API is not included yet in qlik-cli
curl "https://{tenant}.{region}.qlikcloud.com/api/analytics/odag-links/{linkId}" \
-X PUT \
-H "Content-type: application/json" \
-H "Authorization: Bearer <access_token>" \
-d '{"name":"ODAG Link name","ownerId":"wcgIs6wGcDdyzep9QmyopWvNH1FJTOhh","bindings":[{"range":{"lowerBound":42,"upperBound":42},"formatting":{"quote":"'\''","delimiter":","},"numericOnly":false,"selectionStates":"string","selectAppParamName":"string","selectAppParamType":"Field","templateAppVarName":"string"}],"properties":{"disable":[{"context":"string","disable":true}],"menuLabel":[{"label":"string","context":"string"}],"genAppName":[{"params":["templateAppName"],"context":"string","formatString":"string"}],"genAppLimit":[{"limit":42,"context":"string"}],"limitPolicy":[{"context":"string","limitPolicy":"Restrict"}],"rowEstRange":[{"context":"string","lowBound":42,"highBound":42}],"targetSheet":[{"context":"string","sheetId":"string","sheetName":"string"}],"appOpenMethod":[{"context":"string","openMethod":"Tab"}],"appRetentionTime":[{"context":"string","retentionTime":"string"}],"overrideGenAppLimit":[{"context":"string","overrideGenAppLimit":false}]},"rowEstExpr":"string","dynamicView":true,"templateApp":"string","selectionApp":"string","includeScript":false,"statusSetting":"activate"}'

Example Response

{
"id": "string",
"name": "ODAG Link name",
"owner": {
"id": "wcgIs6wGcDdyzep9QmyopWvNH1FJTOhh",
"name": "string",
"subject": "string",
"tenantid": "string"
},
"status": "active",
"bindings": [
{
"range": {
"lowerBound": 42,
"upperBound": 42
},
"formatting": {
"quote": "'",
"delimiter": ","
},
"numericOnly": false,
"selectionStates": "string",
"selectAppParamName": "string",
"selectAppParamType": "Field",
"templateAppVarName": "string"
}
],
"privileges": [
"string"
],
"properties": {
"disable": [
{
"context": "string",
"disable": true
}
],
"menuLabel": [
{
"label": "string",
"context": "string"
}
],
"genAppName": [
{
"params": [
"templateAppName"
],
"context": "string",
"formatString": "string"
}
],
"genAppLimit": [
{
"limit": 42,
"context": "string"
}
],
"limitPolicy": [
{
"context": "string",
"limitPolicy": "Restrict"
}
],
"rowEstRange": [
{
"context": "string",
"lowBound": 42,
"highBound": 42
}
],
"targetSheet": [
{
"context": "string",
"sheetId": "string",
"sheetName": "string"
}
],
"appOpenMethod": [
{
"context": "string",
"openMethod": "Tab"
}
],
"appRetentionTime": [
{
"context": "string",
"retentionTime": "string"
}
],
"overrideGenAppLimit": [
{
"context": "string",
"overrideGenAppLimit": false
}
]
},
"rowEstExpr": "string",
"createdDate": "2025-11-11T13:45:30Z",
"dynamicView": true,
"templateApp": {
"id": "string",
"name": "appname"
},
"modifiedDate": "2025-11-11T13:45:30Z",
"includeScript": false,
"modifiedByUser": {
"id": "wcgIs6wGcDdyzep9QmyopWvNH1FJTOhh",
"name": "string",
"subject": "string",
"tenantid": "string"
},
"genAppAccessible": true,
"templateAppChartObjects": [
{}
]
}

Retrieves all Analytics Application generation requests for a specific ODAG link, with optional filtering by pending status (pending), selection Analytics Application (selectionAppId), sheet context (selectionAppSheet), or client context (clientContextHandle). Use this to track generation history or monitor in-flight requests.

Facts

Rate limit Tier 1 (1000 requests per minute)

Query Parameters

  • clientContextHandlestring

    An opaque handle to a client-side object that contains the reference to the link being used.

  • pendingboolean

    Pass true if only pending requests should be returned.

  • selectionAppIdstring

    The ID of the selection Analytics Application.

  • selectionAppSheetstring

    The name (or ID) of the sheet to filter qualifying ODAG requests for a selection Analytics Application.

Path Parameters

  • linkIdstring
    Required

    The ID of the link.

Responses

200

Successful response - see array of requests in response.

  • application/jsonarray of objects

    An array of Request Summary objects.

    Show application/json properties
    • idstring
      Required

      The system-assigned ID for an ODAG request.

    • kindstring
      Required

      For links that do not use any partitioning fields, a single Analytics Application generation request is created. However, for selection Analytics Applications that designate a set of partitioning fields and the user selects multiple values for any of those partitioning fields, ODAG uses a separate singlesub request to generate a separate Analytics Application for each combination of selected partition field values, and tracks the queuing and data load phase of each of those sub-requests separately. Note that singlesub requests share the same link ID as their spawning multiple parent request.

      Can be one of: "single""multiple""singlesub"

    • linkstring
      Required

      The system-assigned ID for a link.

    • ownerobject
      Required

      Condensed state of a user returned in state of ownable ODAG entities (for example, a link or request).

      Show owner properties
      • idstring
        Required

        The system-assigned ID for a user

      • namestring
        Required
      • subjectstring
        Required

        Identity subject used for identity mapping.

      • tenantidstring
        Required

        Tenant identifier.

    • statestring
      Required

      The current state of an ODAG request.

      Can be one of: "validating""queued""invalid""hold""loading""canceled""failed""succeeded""canceling""canceledAck""failedAck"

    • loadStateobject

      An object that describes the state of a generated Analytics Application's data load operation. In request objects that include this object as an optional property, the property will be missing for multiple generation requests (see their sub-requests for their data load information) or for single and singlesub requests that have not yet reached their loading phase.

      Show loadState properties
      • statusstring

        The completion status of a completed Request.

        Can be one of: "pending""success""warnings""failed"

      • loadHoststring
        Required

        The engine host name used to perform the data load operation for this request. This property will be missing in multiple generation requests (see the loadHost field of their sub-requests) and will be an empty string on a single or singlesub request that has not yet reached the loading phase.

      • startedAtstring
        Required
      • finishedAtstring
    • sheetnamestring
    • purgeAfterstring
    • timeToLiveinteger

      The value of the Link's appRetentionTime property at the time the Analytics Application was generated (0 means no auto-purge).

    • validationarray of strings

      A list of validation errors or warnings.

    • createdDatestring
      Required
    • targetSheetstring

      The ID of the target sheet, taken from the link properties, to navigate to when opening the generated Analytics Application (empty for Analytics Application overview).

    • templateAppstring
      Required

      The system-assigned ID for an Analytics Application.

    • actualRowEstinteger

      The evaluated value of the Link's rowEstExpr measure expression at the time this request was initiated.

    • errorMessagestring

      Detailed message if the request failed.

    • generatedAppobject

      Condensed state of an Analytics Application returned in state for Link, LinkUsage, Request, and ODAG Apps GET calls.

      Show generatedApp properties
      • idstring
        Required

        The system-assigned ID for an Analytics Application.

      • namestring
        Required

        The name of an Analytics Application.

    • modifiedDatestring
      Required
    • selectionAppstring

      The system-assigned ID for an Analytics Application.

    • curRowEstExprstring

      The Link's rowEstExpr property setting at the time this request was initiated.

    • retentionTimeinteger

      The remaining time in minutes this request will be retained (0 means kept forever).

    • parentRequestIdstring

      The system-assigned ID for an ODAG request.

    • templateAppNamestring

      The name of an Analytics Application.

    • bindingStateHashinteger

      A 64-bit hash of the bound field state at the time the request was made.

    • generatedAppNamestring

      The name of an Analytics Application.

    • selectionAppNamestring

      The name of an Analytics Application.

    • curRowEstLowBoundinteger

      The Link's rowEstRange.lowBound value for the user at the time this request was initiated.

    • curRowEstHighBoundinteger

      The Link's rowEstRange.highBound value for the user at the time this request was initiated.

    • selectionStateHashinteger

      A 64-bit hash of the selected field values at the time the request was made.

400

Link not found or ODAG service error (see detailed error).

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

403

Forbidden.

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

404

ODAG not enabled or access denied.

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

GET /api/analytics/odag-links/{linkId}/requests
// qlik-api has not implemented support for `GET /api/analytics/odag-links/{linkId}/requests` yet.
// In the meantime, you can use fetch like this:
const response = await fetch(
'/api/analytics/odag-links/{linkId}/requests',
{
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
},
)
This API is not included yet in qlik-cli
curl "https://{tenant}.{region}.qlikcloud.com/api/analytics/odag-links/{linkId}/requests" \
-H "Authorization: Bearer <access_token>"

Example Response

[
{
"id": "string",
"kind": "single",
"link": "string",
"owner": {
"id": "wcgIs6wGcDdyzep9QmyopWvNH1FJTOhh",
"name": "string",
"subject": "string",
"tenantid": "string"
},
"state": "validating",
"loadState": {
"status": "pending",
"loadHost": "string",
"startedAt": "2025-11-11T13:45:30Z",
"finishedAt": "2025-11-11T13:45:30Z"
},
"sheetname": "string",
"purgeAfter": "2025-11-11T13:45:30Z",
"timeToLive": 42,
"validation": [
"string"
],
"createdDate": "2025-11-11T13:45:30Z",
"targetSheet": "string",
"templateApp": "string",
"actualRowEst": 42,
"errorMessage": "string",
"generatedApp": {
"id": "string",
"name": "appname"
},
"modifiedDate": "2025-11-11T13:45:30Z",
"selectionApp": "string",
"curRowEstExpr": "string",
"retentionTime": 42,
"parentRequestId": "string",
"templateAppName": "appname",
"bindingStateHash": 42,
"generatedAppName": "appname",
"selectionAppName": "appname",
"curRowEstLowBound": 42,
"curRowEstHighBound": 42,
"selectionStateHash": 42
}
]

Submit an ODAG request

Submits a new Analytics Application generation request with the current selection state from a selection Analytics Application. The request is validated against link properties before queuing. On success, returns a request object that you must monitor for completion using the status endpoint. Validation failures return detailed error information.

Facts

Rate limit Tier 2 (100 requests per minute)

Path Parameters

  • linkIdstring
    Required

    The ID of the link.

Request Body

Required
  • application/jsonobject

    Payload to send when creating an ODAG request. selectionApp is the ID of the selection Analytics Application from which the request is made. bindSelectionState is the selection state in the selection Analytics Application at the time the request is submitted (you can limit the fields to those used by the link's bindings to reduce payload size).

    Show application/json properties
    • sheetnamestring

      The name of the sheet from which the request is being made.

    • actualRowEstinteger

      The current row estimate value calculated by the link's rowEstExpr property in the context of the selection Analytics Application.

    • selectionAppstring
      Required

      The system-assigned ID for an Analytics Application.

    • selectionStatearray of objects

      A collection of FieldSelectionStateV2 objects.

      Show selectionState properties
      • valuesarray of objects
        Required

        The list of values in the selection state for this field.

        Show values properties
        • numValuestring
        • strValuestring
          Required
        • selStatusstring
          Required

          The valid set of selection states that a specific field value can be in. One of: S (selected), O (optional), or X (excluded).

          Can be one of: "S""O""X"

      • selectedSizeinteger

        The actual number of selected values. Not used for bindSelectionState.

      • selectionAppParamNamestring
        Required

        The name of a variable or field that corresponds to one or more bindings having a matching selectAppParamName used to generate Analytics Applications.

      • selectionAppParamTypestring
        Required

        The different kinds of selection Analytics Application parameters whose values can be bound to the script of template Analytics Applications when generating new Analytics Applications. Note that Exclude is used to specifically prevent fields defined as optional bind parameters in the template Analytics Application script from being bound (these must either not have the optional quantity constraint specifiers or have a minimum quantity of 0).

        Can be one of: "Field""Variable""Property""Exclude""BDI"

    • bindSelectionStatearray of objects
      Required

      A collection of FieldSelectionStateV2 objects.

      Show bindSelectionState properties
      • valuesarray of objects
        Required

        The list of values in the selection state for this field.

        Show values properties
        • numValuestring
        • strValuestring
          Required
        • selStatusstring
          Required

          The valid set of selection states that a specific field value can be in. One of: S (selected), O (optional), or X (excluded).

          Can be one of: "S""O""X"

      • selectedSizeinteger

        The actual number of selected values. Not used for bindSelectionState.

      • selectionAppParamNamestring
        Required

        The name of a variable or field that corresponds to one or more bindings having a matching selectAppParamName used to generate Analytics Applications.

      • selectionAppParamTypestring
        Required

        The different kinds of selection Analytics Application parameters whose values can be bound to the script of template Analytics Applications when generating new Analytics Applications. Note that Exclude is used to specifically prevent fields defined as optional bind parameters in the template Analytics Application script from being bound (these must either not have the optional quantity constraint specifiers or have a minimum quantity of 0).

        Can be one of: "Field""Variable""Property""Exclude""BDI"

    • clientContextHandlestring

      An opaque handle to a client-side object that contains the reference to the link being used.

Responses

201

Successful response - the request has been queued.

  • application/jsonobject

    The detailed content of an ODAG request object. If this is a summarization of a request initiated from a navigation point that has a single link, its link property refers to that link. Otherwise, a sub-request is created for each link in the navigation point and the link of each sub-request refers to its respective link. If this is a single or singlesub Analytics Application generation request and the request has reached at least the queued stage, the generatedApp property contains the ID of the generated Analytics Application (note that the generated Analytics Application might not yet be populated with data or published if the request is not completed). If this is a single or singlesub request and the data load operation failed, the generatedApp property still contains the ID of the failed Analytics Application to allow viewing of the ODAG-bound script for diagnostic purposes. Generated Analytics Applications for failed requests are purged regularly, so the Analytics Application might no longer be available. If this is a single or singlesub request that was canceled before reaching the loading phase, the generatedApp property is missing because generated Analytics Applications for pre-load phase requests are deleted. If this is a multiple request, the generatedApp property is also missing.

    Show application/json properties
    • idstring
      Required

      The system-assigned ID for an ODAG request.

    • kindstring
      Required

      For links that do not use any partitioning fields, a single Analytics Application generation request is created. However, for selection Analytics Applications that designate a set of partitioning fields and the user selects multiple values for any of those partitioning fields, ODAG uses a separate singlesub request to generate a separate Analytics Application for each combination of selected partition field values, and tracks the queuing and data load phase of each of those sub-requests separately. Note that singlesub requests share the same link ID as their spawning multiple parent request.

      Can be one of: "single""multiple""singlesub"

    • linkstring
      Required

      The system-assigned ID for a link.

    • ownerobject
      Required

      Condensed state of a user returned in state of ownable ODAG entities (for example, a link or request).

      Show owner properties
      • idstring
        Required

        The system-assigned ID for a user

      • namestring
        Required
      • subjectstring
        Required

        Identity subject used for identity mapping.

      • tenantidstring
        Required

        Tenant identifier.

    • statestring
      Required

      The current state of an ODAG request.

      Can be one of: "validating""queued""invalid""hold""loading""canceled""failed""succeeded""canceling""canceledAck""failedAck"

    • loadStateobject

      An object that describes the state of a generated Analytics Application's data load operation. In request objects that include this object as an optional property, the property will be missing for multiple generation requests (see their sub-requests for their data load information) or for single and singlesub requests that have not yet reached their loading phase.

      Show loadState properties
      • statusstring

        The completion status of a completed Request.

        Can be one of: "pending""success""warnings""failed"

      • loadHoststring
        Required

        The engine host name used to perform the data load operation for this request. This property will be missing in multiple generation requests (see the loadHost field of their sub-requests) and will be an empty string on a single or singlesub request that has not yet reached the loading phase.

      • startedAtstring
        Required
      • finishedAtstring
    • sheetnamestring
    • purgeAfterstring
    • timeToLiveinteger

      The value of the Link's appRetentionTime property at the time the Analytics Application was generated (0 means no auto-purge).

    • validationarray of strings

      A list of validation errors or warnings.

    • createdDatestring
      Required
    • targetSheetstring

      The ID of the target sheet, taken from the link properties, to navigate to when opening the generated Analytics Application (empty for Analytics Application overview).

    • templateAppstring
      Required

      The system-assigned ID for an Analytics Application.

    • actualRowEstinteger

      The evaluated value of the Link's rowEstExpr measure expression at the time this request was initiated.

    • errorMessagestring

      Detailed message if the request failed.

    • generatedAppobject

      Condensed state of an Analytics Application returned in state for Link, LinkUsage, Request, and ODAG Apps GET calls.

      Show generatedApp properties
      • idstring
        Required

        The system-assigned ID for an Analytics Application.

      • namestring
        Required

        The name of an Analytics Application.

    • modifiedDatestring
      Required
    • selectionAppstring

      The system-assigned ID for an Analytics Application.

    • curRowEstExprstring

      The Link's rowEstExpr property setting at the time this request was initiated.

    • retentionTimeinteger

      The remaining time in minutes this request will be retained (0 means kept forever).

    • parentRequestIdstring

      The system-assigned ID for an ODAG request.

    • templateAppNamestring

      The name of an Analytics Application.

    • bindingStateHashinteger

      A 64-bit hash of the bound field state at the time the request was made.

    • generatedAppNamestring

      The name of an Analytics Application.

    • selectionAppNamestring

      The name of an Analytics Application.

    • curRowEstLowBoundinteger

      The Link's rowEstRange.lowBound value for the user at the time this request was initiated.

    • curRowEstHighBoundinteger

      The Link's rowEstRange.highBound value for the user at the time this request was initiated.

    • selectionStateHashinteger

      A 64-bit hash of the selected field values at the time the request was made.

400

The selection Analytics Application was in an invalid state to proceed with this Analytics Application generation (see detailed error).

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

403

Forbidden.

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

404

Invalid link ID.

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

POST /api/analytics/odag-links/{linkId}/requests
// qlik-api has not implemented support for `POST /api/analytics/odag-links/{linkId}/requests` yet.
// In the meantime, you can use fetch like this:
const response = await fetch(
'/api/analytics/odag-links/{linkId}/requests',
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
sheetname: 'string',
actualRowEst: 42,
selectionApp: 'string',
selectionState: [
{
values: [
{
numValue: 'string',
strValue: 'string',
selStatus: 'S',
},
],
selectedSize: 42,
selectionAppParamName: 'string',
selectionAppParamType: 'Field',
},
],
bindSelectionState: [
{
values: [
{
numValue: 'string',
strValue: 'string',
selStatus: 'S',
},
],
selectedSize: 42,
selectionAppParamName: 'string',
selectionAppParamType: 'Field',
},
],
clientContextHandle: 'string',
}),
},
)
This API is not included yet in qlik-cli
curl "https://{tenant}.{region}.qlikcloud.com/api/analytics/odag-links/{linkId}/requests" \
-X POST \
-H "Content-type: application/json" \
-H "Authorization: Bearer <access_token>" \
-d '{"sheetname":"string","actualRowEst":42,"selectionApp":"string","selectionState":[{"values":[{"numValue":"string","strValue":"string","selStatus":"S"}],"selectedSize":42,"selectionAppParamName":"string","selectionAppParamType":"Field"}],"bindSelectionState":[{"values":[{"numValue":"string","strValue":"string","selStatus":"S"}],"selectedSize":42,"selectionAppParamName":"string","selectionAppParamType":"Field"}],"clientContextHandle":"string"}'

Example Response

{
"id": "string",
"kind": "single",
"link": "string",
"owner": {
"id": "wcgIs6wGcDdyzep9QmyopWvNH1FJTOhh",
"name": "string",
"subject": "string",
"tenantid": "string"
},
"state": "validating",
"loadState": {
"status": "pending",
"loadHost": "string",
"startedAt": "2025-11-11T13:45:30Z",
"finishedAt": "2025-11-11T13:45:30Z"
},
"sheetname": "string",
"purgeAfter": "2025-11-11T13:45:30Z",
"timeToLive": 42,
"validation": [
"string"
],
"createdDate": "2025-11-11T13:45:30Z",
"targetSheet": "string",
"templateApp": "string",
"actualRowEst": 42,
"errorMessage": "string",
"generatedApp": {
"id": "string",
"name": "appname"
},
"modifiedDate": "2025-11-11T13:45:30Z",
"selectionApp": "string",
"curRowEstExpr": "string",
"retentionTime": 42,
"parentRequestId": "string",
"templateAppName": "appname",
"bindingStateHash": 42,
"generatedAppName": "appname",
"selectionAppName": "appname",
"curRowEstLowBound": 42,
"curRowEstHighBound": 42,
"selectionStateHash": 42
}

Checks whether the current user has permission to create new ODAG links. Optionally verify permissions for a specific template Analytics Application or selection Analytics Application context. Returns a boolean indicating create permission status.

Facts

Rate limit Tier 1 (1000 requests per minute)

Query Parameters

  • optDenyIfSelAppNotUpdatableboolean

    When true, deny permission if the selection Analytics Application cannot be updated. This parameter is ignored unless optSelectAppId is also supplied.

  • optSelectAppIdstring

    An optional parameter for specifying the ID of a selection Analytics Application.

  • optTemplateAppIdstring

    An optional parameter for specifying the ID of a template Analytics Application.

Responses

200

Successful response.

  • application/jsonobject

    An object used to inform the caller whether the current user has privilege to create new Links.

    Show application/json properties
    • canCreateLinksboolean

400

Invalid parameter values (see detailed error).

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

403

Forbidden.

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

404

ODAG not enabled.

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

GET /api/analytics/odag-links/cancreate
// qlik-api has not implemented support for `GET /api/analytics/odag-links/cancreate` yet.
// In the meantime, you can use fetch like this:
const response = await fetch(
'/api/analytics/odag-links/cancreate',
{
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
},
)
This API is not included yet in qlik-cli
curl "https://{tenant}.{region}.qlikcloud.com/api/analytics/odag-links/cancreate" \
-H "Authorization: Bearer <access_token>"

Example Response

{
"canCreateLinks": true
}

List ODAG links used by a selection Analytics Application

Registers the current set of ODAG links referenced by a selection Analytics Application and returns only those links the current user can access. Call this when a selection Analytics Application is opened or after modifying its ODAG link references. The response is an array of objects, where the id identifies the requested link and link contains the link state when accessible. Use GET /analytics/odag-links/{linkId} for full details.

Facts

Rate limit Tier 2 (100 requests per minute)

Query Parameters

  • selAppIdstring
    Required

    The ID of a selection Analytics Application.

  • includeChartsboolean

    When true, include master charts from the template Analytics Application in the response.

  • typestring

    The type of the links to query. Defaults to link.

    Can be one of: "link""view""all"

Request Body

Required
  • application/jsonobject

    A JSON payload containing an array of LinkIds.

    Show application/json properties
    • linkListarray of strings
      Required

      An array of Link IDs.

Responses

200

Successful response.

  • application/jsonarray of objects

    Used to return a possibly empty link state when querying multiple links by ID where any one of those IDs may be invalid or obsolete. If the link field is missing, it means there was no accessible link for the corresponding id.

    Show application/json properties
    • idstring
      Required

      The system-assigned ID for a link.

    • linkobject

      The full state of a Link.

      Show link properties
      • idstring
        Required
      • namestring
        Required

        The name of a link.

      • ownerobject
        Required

        Condensed state of a user returned in state of ownable ODAG entities (for example, a link or request).

        Show owner properties
        • idstring
          Required

          The system-assigned ID for a user

        • namestring
          Required
        • subjectstring
          Required

          Identity subject used for identity mapping.

        • tenantidstring
          Required

          Tenant identifier.

      • statusstring
        Required

        The current status of a link.

        Can be one of: "active""disabled""decommissioned""incomplete"

      • bindingsarray of objects

        A collection of Bindings. Note that there can be multiple bindings having the same templateAppFieldName in a binding collection to denote different usages of the field's selection state in the context of the data prep logic but they all must have the same value for their range property.

        Show bindings properties
        • rangeobject

          The lower and upper bound for the permitted number of values that must exist in the selection Analytics Application's source parameter in order for this binding to be valid (and permit an ODAG Request to be submitted. If this property is not supplied, there is no constraint on either the lower or upper bound. To indicate that an exact number of selections are required, use the same number for both the lower and upper bound.

          Show range properties
          • lowerBoundinteger
          • upperBoundinteger
        • formattingobject

          A property value that describes the formatting of field values in a Binding. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

          Show formatting properties
          • quotestring

            The character to use for quote wrapping each of the bound values when formatting the source values associated with this binding. If this property is not supplied, a single quote character (') will be used by default. Use an empty string to suppress quote wrapping the values.

          • delimiterstring

            The character to use as a separator between two (or more) bound values when formatting the source values associated with this binding. If this property is not supplied, a comma character will be used by default. Use an empty string to indicate that no separator character should be used.

        • numericOnlyboolean

          Set to true to indicate that only numeric values from the selection Analytics Application source parameter should be used. The default value for this property, if left unspecified, is false. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

        • selectionStatesstring

          A combination of the letters S and/or O to indicate which values from the selection states selected or optional in the hypercube of the selection Analytics Application to harvest as bind values to inject into the script of the template Analytics Application at ODAG request submission time. This is currently only settable in the template Analytics Application script and not when creating or updating a Link.

        • selectAppParamNamestring

          The path (or name) of the selection Analytics Application field, variable, or property to obtain the list of values for this binding.

        • selectAppParamTypestring
          Required

          The different kinds of selection Analytics Application parameters whose values can be bound to the script of template Analytics Applications when generating new Analytics Applications. Note that Exclude is used to specifically prevent fields defined as optional bind parameters in the template Analytics Application script from being bound (these must either not have the optional quantity constraint specifiers or have a minimum quantity of 0).

          Can be one of: "Field""Variable""Property""Exclude""BDI"

        • templateAppVarNamestring
          Required
      • privilegesarray of strings
      • propertiesobject
        Required

        The complete set of possible properties for a link and their associated user context/value pairings.

        Show properties properties
        • disablearray of objects

          Set to true to temporarily disable the use of this Link to generate Analytics Applications.

          Show disable properties
          • contextstring
            Required

            An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

          • disableboolean
            Required
        • menuLabelarray of objects

          The default label to use for this Link in the context of the selection Analytics Application's ODAG navigation menu.

          Show menuLabel properties
          • labelstring
            Required
          • contextstring
            Required

            An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • genAppNamearray of objects

          An object that defines how to compute the name to use for the generated Analytics Application.

          Show genAppName properties
          • paramsarray of strings

            One of the allowed variables that, when evaluated at ODAG Request execution time, can be used to compute a part of a generated Analytics Application's name.

            Values may be any of: "templateAppName""userId""curYear""curMonth""curDay""curHr""curMin""curSec"

          • contextstring
            Required

            An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

          • formatStringstring
            Required

            A string containing the base text of the name to use for the generated Analytics Application and optionally any number of placeholder patterns of the form {N} where N is an integer greater than or equal to 0. The integer identifies the offset in the params array of an AppNameParameterV2 to evaluate at ODAG Request execution time to compute a fragment of the generated Analytics Application's name and insert it at the same position as its corresponding {N} placeholder.

        • genAppLimitarray of objects

          The limit to the number of Analytics Applications generated using this specific Link that can exist, and still not deleted, before the policy defined by the limitPolicy property (configured separately via LinkPropertiesV2.limitPolicy) is applied. If no limitPolicy is defined, the Restrict policy is assumed. If there is no value for this property applicable to the current user, there is no limit to the number of Analytics Applications that can be generated from this link for the user. The count of the current number of Analytics Applications is based on just those Analytics Applications generated by the current user (and still in existence) for this specific link. The minimum value for limit is 1.

          Show genAppLimit properties
          • limitinteger
            Required
          • contextstring
            Required

            An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

        • limitPolicyarray of objects

          The action to take when the limit to the maximum number of generated Analytics Applications is reached.

          Show limitPolicy properties
          • contextstring
            Required

            An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

          • limitPolicystring
            Required

            Can be one of: "Restrict""AutoDelete"

        • rowEstRangearray of objects
          Required

          A link property that defines a value range that the evaluated value of the row estimate measure must fall within in order to allow submissions of a request for the link.

          Show rowEstRange properties
          • contextstring
            Required

            An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

          • lowBoundinteger

            The minimum value for the row estimate to enable usage of the link to perform an ODAG request. If the row estimate expression evaluates to a number lower than this value, the user will be prevented from submitting an ODAG request for this link. If this value is not supplied, no minimum is required.

          • highBoundinteger
            Required

            The maximum value for the row estimate to enable usage of the link. If the row estimate expression evaluates to a value larger than this value, the user will be prevented from submitting an ODAG request for this link.

        • targetSheetarray of objects

          An optional property that a Link creator can specify to cause the client to navigate to a specific sheet in the generated Analytics Application when opening the generated Analytics Application from the selection Analytics Application's navpoint panel.

          Show targetSheet properties
          • contextstring
            Required

            An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

          • sheetIdstring
            Required

            The ID of the sheet to first navigate to when opening the generated Analytics Application from the selection Analytics Application.

          • sheetNamestring

            An optional, read-only property that is returned when retrieving a link if the targetSheet setting exists for the current user in the link's properties set and the sheet with that ID exists in the link's templateApp.

        • appOpenMethodarray of objects

          Sets the default method by which the newly generated Analytics Application is displayed when opened. The default is Tab to open a new tab in the same browser. Note that not all devices permit both methods so the chosen behavior may not apply if it is not supported on the user's device or browser.

          Show appOpenMethod properties
          • contextstring
            Required

            An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

          • openMethodstring
            Required

            Can be one of: "Tab""Window"

        • appRetentionTimearray of objects

          A string that defines the length of time that a generated Analytics Application should be allowed to exist before it is automatically purged. The format must be in either ISO 8601 duration format or the text unlimited.

          Show appRetentionTime properties
          • contextstring
            Required

            An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

          • retentionTimestring
            Required
        • overrideGenAppLimitarray of objects

          The limit to the number of Analytics Applications generated can be overridden using this specific Link that can exist, and still not deleted. The default value for this property is false. If this property value is set to true, then the limit value in genAppLimit is ignored.

          Show overrideGenAppLimit properties
          • contextstring
            Required

            An expression based on the usage environment of a Link typically including predicates that test the current user's membership in a group or possession of a user role that when evaluated truthfully enables an applicable value for a Link property. For example, User_* indicates that the link property setting applies to all users while User.name = joe indicates the rule applies only to a specific user named joe.

          • overrideGenAppLimitboolean
      • rowEstExprstring
        Required

        The measure expression to be evaluated in the context of the selection Analytics Application for the link that estimates the number of records that will be qualified by the primary load query of the template Analytics Application. This expression must be valid in the context of the selection Analytics Application fields and update whenever the selection state of the selection Analytics Application changes.

      • createdDatestring
        Required
      • dynamicViewboolean

        When true, the ODAG link is treated as a dynamic view.

      • templateAppobject
        Required

        Condensed state of an Analytics Application returned in state for Link, LinkUsage, Request, and ODAG Apps GET calls.

        Show templateApp properties
        • idstring
          Required

          The system-assigned ID for an Analytics Application.

        • namestring
          Required

          The name of an Analytics Application.

      • modifiedDatestring
      • includeScriptboolean

        Set to true to include the generated Analytics Application load script in the generated Analytics Application. The default value is false.

      • modifiedByUserobject

        Condensed state of a user returned in state of ownable ODAG entities (for example, a link or request).

        Show modifiedByUser properties
        • idstring
          Required

          The system-assigned ID for a user

        • namestring
          Required
        • subjectstring
          Required

          Identity subject used for identity mapping.

        • tenantidstring
          Required

          Tenant identifier.

      • genAppAccessibleboolean

        Only returned on LinkGet and set to true if user will have access to an Analytics Application generated by this link.

      • templateAppChartObjectsarray of objects

400

Invalid parameter values or link list (see detailed error).

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

403

Forbidden.

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

404

Invalid selection Analytics Application ID or link ID supplied (see detailed error message).

  • application/jsonobject

    A standard error response containing a list of one or more errors.

    Show application/json properties
    • errorsarray of objects

      A single error entry within an error response.

      Show errors properties
      • codestring

        A unique code used to identify the template form of the message in i18n tables (language independent).

      • metaobject

        Additional metadata associated with an error.

        Show meta properties
        • statusCodeinteger

          The HTTP status code for the error. Generally speaking, the following codes have these meanings: 200 - Success, 201 - Success (object created), 400 - Error with user input, 403 - Authorization error (user lacks permission), 404 - Object not found, 409 - Attempt to change an object using an obsolete last ModifiedDate.

      • titlestring
      • detailstring

        The message describing the error.

    • traceIdstring

      A unique ID of the trace which the error occurred in. Makes it possible to locate involved services and find log messages from the time of the error.

POST /api/analytics/odag-links/selection-app-link-usages
// qlik-api has not implemented support for `POST /api/analytics/odag-links/selection-app-link-usages` yet.
// In the meantime, you can use fetch like this:
const response = await fetch(
'/api/analytics/odag-links/selection-app-link-usages',
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
linkList: ['string'],
}),
},
)
This API is not included yet in qlik-cli
curl "https://{tenant}.{region}.qlikcloud.com/api/analytics/odag-links/selection-app-link-usages" \
-X POST \
-H "Content-type: application/json" \
-H "Authorization: Bearer <access_token>" \
-d '{"linkList":["string"]}'

Example Response

[
{
"id": "string",
"link": {
"id": "string",
"name": "ODAG Link name",
"owner": {
"id": "wcgIs6wGcDdyzep9QmyopWvNH1FJTOhh",
"name": "string",
"subject": "string",
"tenantid": "string"
},
"status": "active",
"bindings": [
{
"range": {
"lowerBound": 42,
"upperBound": 42
},
"formatting": {
"quote": "'",
"delimiter": ","
},
"numericOnly": false,
"selectionStates": "string",
"selectAppParamName": "string",
"selectAppParamType": "Field",
"templateAppVarName": "string"
}
],
"privileges": [
"string"
],
"properties": {
"disable": [
{
"context": "string",
"disable": true
}
],
"menuLabel": [
{
"label": "string",
"context": "string"
}
],
"genAppName": [
{
"params": [
"templateAppName"
],
"context": "string",
"formatString": "string"
}
],
"genAppLimit": [
{
"limit": 42,
"context": "string"
}
],
"limitPolicy": [
{
"context": "string",
"limitPolicy": "Restrict"
}
],
"rowEstRange": [
{
"context": "string",
"lowBound": 42,
"highBound": 42
}
],
"targetSheet": [
{
"context": "string",
"sheetId": "string",
"sheetName": "string"
}
],
"appOpenMethod": [
{
"context": "string",
"openMethod": "Tab"
}
],
"appRetentionTime": [
{
"context": "string",
"retentionTime": "string"
}
],
"overrideGenAppLimit": [
{
"context": "string",
"overrideGenAppLimit": false
}
]
},
"rowEstExpr": "string",
"createdDate": "2025-11-11T13:45:30Z",
"dynamicView": true,
"templateApp": {
"id": "string",
"name": "appname"
},
"modifiedDate": "2025-11-11T13:45:30Z",
"includeScript": false,
"modifiedByUser": {
"id": "wcgIs6wGcDdyzep9QmyopWvNH1FJTOhh",
"name": "string",
"subject": "string",
"tenantid": "string"
},
"genAppAccessible": true,
"templateAppChartObjects": [
{}
]
}
}
]