List User Apps

Returns the list of Symphony application entitlements for this user.

Get the list of application entitlements for this user

get
Path parameters
uidanyrequired

User ID as a decimal integer

Header parameters
sessionTokenanyrequired

Session authentication token.

Responses
curl -L \
  --url 'yourpodURL.symphony.com/pod/v1/admin/user/{uid}/app/entitlement/list'
[
  {
    "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"
      }
    ]
  }
]

🚧 Important

This 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?