Update App Entitlements

Update the application entitlements for the company.

Update the application entitlements for the company

post
Header parameters
sessionTokenstringRequired

Session authentication token.

Bodyobject[]

Application Entitlements for the company

appIdstring · min: 1 · max: 256Required

Unique ID for the Application

Example: djApp
appNamestring · min: 1 · max: 50Required

Name for this Application

Example: Dow Jones
enablebooleanRequiredExample: true
listedbooleanRequired

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

Example: true
installbooleanRequired

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

Example: true
Responses
200
Success
application/json
post
POST /pod/v1/admin/app/entitlement/list HTTP/1.1
Host: yourpodurl.symphony.com
sessionToken: text
Content-Type: application/json
Accept: */*
Content-Length: 179

[
  {
    "appId": "djApp",
    "appName": "Dow Jones",
    "enable": true,
    "listed": true,
    "install": false
  },
  {
    "appId": "selerity",
    "appName": "Selerity Context",
    "enable": false,
    "listed": true,
    "install": true
  }
]
[
  {
    "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

Was this helpful?