List User Apps
Returns the list of Symphony application entitlements for this user.
Path parameters
uidinteger · int64Required
User ID as a decimal integer
Header parameters
sessionTokenstringRequired
Session authentication token.
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
get
GET /pod/v1/admin/user/{uid}/app/entitlement/list HTTP/1.1
Host: yourpodURL.symphony.com
sessionToken: text
Accept: */*
[
{
"appId": "djApp",
"appName": "Dow Jones",
"listed": true,
"install": false
},
{
"appId": "selerity",
"appName": "Selerity Context",
"listed": true,
"install": true,
"products": [
{
"appId": "selerity",
"name": "Standard",
"subscribed": true,
"type": "default"
},
{
"appId": "selerity",
"name": "Premium",
"sku": "AcDccU53SsY",
"subscribed": false,
"type": "premium"
}
]
}
]
🚧 ImportantThis endpoint returns all enabled entitlements for a specific user, returning both the global and the custom settings. Currently, it is not possible to identify by API response whether the returned entitlements are global or custom.
To know more about how to modify an app entitlement per user, and how to reset the app entitlements for that user to the default global settings, refer to Update User Apps
Last updated
Was this helpful?