Update App Entitlements
Update the application entitlements for the company.
Header parameters
sessionTokenstringRequired
Session authentication token.
Bodyobject[]
Application Entitlements for the company
appIdstring · min: 1 · max: 256RequiredExample:
Unique ID for the Application
djApp
appNamestring · min: 1 · max: 50RequiredExample:
Name for this Application
Dow Jones
enablebooleanRequiredExample:
true
listedbooleanRequiredExample:
if true, this application will be listed in the appstore for everyone. Otherwise, this application will be hidden in the appstore.
true
installbooleanRequiredExample:
if true, the entitlement is set to automatic for the company. Otherwise, it is set to manual.
true
Responses
200
Success
application/json
400
Client error, see response body for further details.
application/json
401
Unauthorized: Invalid session token.
application/json
403
Forbidden: Caller lacks necessary entitlement.
application/json
500
Server error, see response body for further details.
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 EndpointOnly Administrators are entitled to call this endpoint. See Bot Permissions) for a list of roles and associated privileges.
Last updated
Was this helpful?