> For the complete documentation index, see [llms.txt](https://rest-api.symphony.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rest-api.symphony.com/main/apps-entitlements/list-app-users.md).

# List App Users

## List users application visibility and entitlements.

> Lists users with application, visiblity and subscription entitlements.

```json
{"openapi":"3.0.3","info":{"title":"SBE Users API","version":"5.0.0"},"tags":[],"servers":[{"url":"https://yourpodURL.symphony.com"}],"paths":{"/v5/users/apps/{groupAppId}":{"get":{"tags":["Apps"],"summary":"List users application visibility and entitlements.","description":"Lists users with application, visiblity and subscription entitlements.","operationId":"findAppUsers","parameters":[{"name":"sessionToken","in":"header","required":true,"schema":{"type":"string","description":"App session authentication token."}},{"name":"groupAppId","in":"path","required":true,"schema":{"type":"string","minLength":1}},{"name":"installed","in":"query","required":false,"schema":{"type":"boolean","description":"Filter users with app installed"}}],"responses":{"200":{"description":"Paged List of users","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AppUsersResponse"}}}},"400":{"$ref":"#/components/responses/ClientError"},"403":{"$ref":"#/components/responses/Forbidden"},"404":{"description":"App not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MessageWithCode"}}}},"500":{"$ref":"#/components/responses/ServerError"},"501":{"$ref":"#/components/responses/NotImplemented"}}}}},"components":{"schemas":{"AppUsersResponse":{"type":"object","properties":{"users":{"type":"array","items":{"$ref":"#/components/schemas/AppUser"}},"page":{"$ref":"#/components/schemas/PageMeta"}}},"AppUser":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/UserId"},"enable":{"type":"boolean"},"listed":{"type":"boolean"},"product":{"$ref":"#/components/schemas/AppSubscription"}},"required":["userId","visible"]},"UserId":{"type":"integer","format":"int64","minimum":1},"AppSubscription":{"type":"object","properties":{"name":{"type":"string"},"type":{"type":"string"},"subscribed":{"type":"boolean"}},"required":["name","type"]},"PageMeta":{"type":"object","description":"Metadata about the paginated response.","properties":{"size":{"type":"integer","description":"The number of items in the current page."},"number":{"type":"integer","description":"The page number (0-based)."},"totalElements":{"type":"integer","format":"int64","description":"The total number of items available."},"totalPages":{"type":"integer","description":"The total number of pages available."},"first":{"type":"boolean","description":"True if this is the first page."},"last":{"type":"boolean","description":"True if this is the last page."},"hasNext":{"type":"boolean","description":"True if there is a next page."},"hasPrevious":{"type":"boolean","description":"True if there is a previous page."},"sort":{"type":"array","items":{"$ref":"#/components/schemas/Sort"}}}},"Sort":{"type":"object","properties":{"property":{"type":"string","description":"The property to sort by."},"direction":{"$ref":"#/components/schemas/DirectionEnum"}}},"DirectionEnum":{"type":"string","enum":["ASC","DESC"]},"MessageWithCode":{"properties":{"code":{"type":"integer","format":"int32"},"message":{"type":"string"}}}},"responses":{"ClientError":{"description":"Client error, see response body for further details.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MessageWithCode"}}}},"Forbidden":{"description":"Forbidden, Caller lacks necessary entitlement.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MessageWithCode"}}}},"ServerError":{"description":"Server error, see response body for further details.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MessageWithCode"}}}},"NotImplemented":{"description":"Not Implemented.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MessageWithCode"}}}}}}}
```
