Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
chowarth
Partner - Contributor
Partner - Contributor

Which Respository API to use to extract APPs and the values for the Custom Properties for that APP

Could you point me to the Repository API that will return the APP and the values for the Custom Properties for that APP. 

Labels (1)
1 Solution

Accepted Solutions
Levi_Turner
Employee
Employee

Yes, /qrs/app/full will return the same values but for all apps.

View solution in original post

5 Replies
Levi_Turner
Employee
Employee

GET /qrs/app/{id}

Example Request: 

  • GET /qrs/app/d1309075-86e8-4784-a9fd-2658ab47018e

Example Response:

 

{
  "id": "d1309075-86e8-4784-a9fd-2658ab47018e",
  "createdDate": "2017-05-22T20:52:05.742Z",
  "modifiedDate": "2019-04-01T14:00:00.793Z",
  "modifiedByUserName": "INTERNAL\\sa_repository",
  "customProperties": [
    {
      "id": "d14ef470-81ec-4f13-91d7-54da3cf43ba0",
      "createdDate": "2018-05-03T20:01:51.249Z",
      "modifiedDate": "2019-04-01T14:00:00.793Z",
      "modifiedByUserName": "INTERNAL\\sa_repository",
      "value": "Yes",
      "definition": {
        "id": "9e164178-6704-4230-b8b8-4815c50e5e34",
        "name": "AllowSelfService",
        "valueType": "Text",
        "choiceValues": [
          "Yes",
          "No",
          "foo",
          "bar"
        ],
        "privileges": null
      },
      "schemaPath": "CustomPropertyValue"
    },
    {
      "id": "2092ba36-9dd7-4731-b48b-1af81f49f2d2",
      "createdDate": "2018-05-03T20:01:48.778Z",
      "modifiedDate": "2019-04-01T14:00:00.793Z",
      "modifiedByUserName": "INTERNAL\\sa_repository",
      "value": "No",
      "definition": {
        "id": "9e164178-6704-4230-b8b8-4815c50e5e34",
        "name": "AllowSelfService",
        "valueType": "Text",
        "choiceValues": [
          "Yes",
          "No",
          "foo",
          "bar"
        ],
        "privileges": null
      },
      "schemaPath": "CustomPropertyValue"
    }
  ],
  "owner": {
    "id": "0d11d863-1c53-4a00-8699-3837b09109aa",
    "userId": "ltu",
    "userDirectory": "QTSEL",
    "name": "Levi Turner",
    "privileges": null
  },
  "name": "(Folder) Data Connection List",
  "appId": "",
  "sourceAppId": "00000000-0000-0000-0000-000000000000",
  "targetAppId": "00000000-0000-0000-0000-000000000000",
  "publishTime": "2017-06-15T19:28:25.549Z",
  "published": true,
  "tags": [],
  "description": "",
  "stream": {
    "id": "c88f372b-7fa7-493e-92d8-d4caa0f2a4f1",
    "name": "Completed Code",
    "privileges": null
  },
  "fileSize": 142446,
  "lastReloadTime": "2017-05-22T20:39:14.112Z",
  "thumbnail": "",
  "savedInProductVersion": "12.287.2",
  "migrationHash": "98d482c3f964dccf69cbfb9a00e0c048ea6eb221",
  "dynamicColor": "",
  "availabilityStatus": 1,
  "privileges": null,
  "schemaPath": "App"
}

 

Note the customProperties > value element as well as the customProperties > definition> name element.

chowarth
Partner - Contributor
Partner - Contributor
Author

Thanks,  if I use get /app/content/full will it also return the apps and custom properties?

Levi_Turner
Employee
Employee

Yes, /qrs/app/full will return the same values but for all apps.

Sue_Macaluso
Community Manager
Community Manager

@chowarth Hi, are you using QlikView or Sense? Although you have a bunch of replies I would like to move this into the correct product forum. 

Did you find a solution to your question? Mark the solution as accepted : and if you found it useful, press the like button!
chowarth
Partner - Contributor
Partner - Contributor
Author

My query related to Qlik Sense.