# User Features

## GET /v1/admin/user/{uid}/features

> Get the list of Symphony feature entitlements enabled for a particular user

```json
{"openapi":"3.1.1","info":{"title":"Pod API","version":"20.17.1"},"servers":[{"url":"http://yourpodURL.symphony.com/pod"}],"paths":{"/v1/admin/user/{uid}/features":{"get":{"summary":"Get the list of Symphony feature entitlements enabled for a particular user","parameters":[{"schema":{"type":"string"},"name":"sessionToken","description":"Session authentication token.","in":"header","required":true},{"schema":{"type":"integer","format":"int64"},"name":"uid","description":"User ID as a decimal integer\n","in":"path","required":true}],"tags":["User"],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/FeatureList"}}}},"400":{"description":"Client error, see response body for further details.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Unauthorized: Invalid session token.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"403":{"description":"Forbidden: Caller lacks necessary entitlement.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"Server error, see response body for further details.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}},"components":{"schemas":{"FeatureList":{"type":"array","items":{"$ref":"#/components/schemas/Feature"}},"Feature":{"description":"Entitlement feature record.","type":"object","properties":{"entitlment":{"type":"string"},"enabled":{"type":"boolean","description":"Whether this entitlement is enabled for the user."}}},"Error":{"type":"object","properties":{"code":{"type":"integer","format":"int32"},"message":{"type":"string"}}}}}}
```

Use the data returned from this endpoint with [Find Users](https://rest-api.symphony.com/main/user-management/find-users) to filter users by a specific entitlement.

> #### 🚧 Required Permissions
>
> Calling this endpoint requires the User Provisioning role with ACCESS\_USER\_PROVISIONING\_API privilege.\
> See [Bot Permissions](https://docs.developers.symphony.com/building-bots-on-symphony/configuration/bot-permissions) for a list of roles and associated privileges.
