Update App Entitlements

Update the application entitlements for the company.

Update the application entitlements for the company

POSTyourpodURL.symphony.com/pod/v1/admin/app/entitlement/list
Header parameters
Body
appId*string

Unique ID for the Application

Example: "djApp"
appName*string

Name for this Application

Example: "Dow Jones"
enable*boolean
Example: true
listed*boolean

if true, this application will be listed in the appstore for everyone. Otherwise, this application will be hidden in the appstore.

Example: true
install*boolean

if true, the entitlement is set to automatic for the company. Otherwise, it is set to manual.

Example: true
Response

Success

Body
appId*string

Unique ID for the Application

Example: "djApp"
appName*string

Name for this Application

Example: "Dow Jones"
enable*boolean
Example: true
listed*boolean

if true, this application will be listed in the appstore for everyone. Otherwise, this application will be hidden in the appstore.

Example: true
install*boolean

if true, the entitlement is set to automatic for the company. Otherwise, it is set to manual.

Example: true
Request
const response = await fetch('yourpodURL.symphony.com/pod/v1/admin/app/entitlement/list', {
    method: 'POST',
    headers: {
      "sessionToken": "text",
      "Content-Type": "application/json"
    },
    body: JSON.stringify([
      {
        "appId": "djApp",
        "appName": "Dow Jones",
        "enable": true,
        "listed": true,
        "install": false
      },
      {
        "appId": "selerity",
        "appName": "Selerity Context",
        "enable": false,
        "listed": true,
        "install": true
      }
    ]),
});
const data = await response.json();
Response
[
  {
    "appId": "djApp",
    "appName": "Dow Jones",
    "enable": true,
    "listed": true,
    "install": false
  },
  {
    "appId": "selerity",
    "appName": "Selerity Context",
    "enable": false,
    "listed": true,
    "install": true
  }
]

🚧 Restricted Endpoint

Only Administrators are entitled to call this endpoint. See Bot Permissions) for a list of roles and associated privileges.

Last updated