UserEntityAccess_Get (Get)
- Last UpdatedNov 06, 2025
- 1 minute read
| Get | UserEntityAccess_Get |
Resource Path:/api/UserEntityAccess/{entityID}
| Name | Description | Data Type |
|---|---|---|
| entityID | Required. The ID of the entity for which to retrieve access information. | integer |
| userId | The ID of the user for whom to retrieve entity access information. If this parameter is not included in the endpoint, entity access information for the current user is returned. The current user is the user entered in the Authentication window that appears when accessing the Web API. | string |
The response body is of type Array[Mes.WebApi.Models.EntityAccess].
To get the access information for the entity whose ID is 20 for the user mdmuser:
api/UserEntityAccess?entityId=20&userId=mdmuser
Examples: Work Tasks Lookups
To get access information for a specific user and entity:
api/UserEntityAccess?entityId={entityId}&userId={userId}