title | category |
---|---|
Permissions API |
API Documentation |
The Permissions API is an App Service that enables retrieving the user roles a specific user has in your application. There are several ways in which the roles granted to a user in an application can be changed:
- A role configured for a user through the Invite API can be edited via that API.
- A user may be granted roles through a group policy for a security group in which they are a member. Group policies define a specific set of user roles to be granted to members of the security group to which the policy applies for a specific environment. Security group membership can be changed by either the Company Admin or via the User Management API .
{{% alert type="info" %}}
The Permissions API will require the EnvironmentUUID and EnvironmentPassword parameters to authenticate and authorize requests; the values for these should come from constants from the AppCloudServices module with the same name. The Mendix Developer Portal will automatically set these constants; you do not need to set these yourself. For this reason, the Permissions API will however only function for applications which use the AppCloudServices module and are deployed through the Mendix Developer Portal.
{{% /alert %}}
The service is part of the AppCloudServices module, which is available from the App Store, and it's included in the default themes when creating a new application. Both of these options include a default implementation of the Permissions API.
Retrieves the user roles for a specific user, based on their OpenID; this will return a list of AppRole objects representing the user roles the user has.
{{% alert type="info" %}}
Note that a request will return a list of non-persistable objects. It's up to the implementer of the Permissions API to use these to create a database representation of the roles the user has in the application.
{{% /alert %}}
API Version 1.
Name | Parameter type | Required | Description |
---|---|---|---|
OpenID | String | Yes | OpenID of the user for which you are retrieving the roles. |
EnvironmentUUID | String | Yes | UUID of the requesting environment. This should be the value of the AppCloudServices.EnvironmentUUID constant, which the Mendix Developer Portal will fill in automatically. |
EnvironmentPassword | String | Yes | Password of the requesting environment. This should be the value of the AppCloudServices.EnvironmentUUID constant, which the Mendix Developer Portal will fill in automatically. |
List of PermissionsAPI.AppRole objects.
Attribute | Type | Description |
---|---|---|
UUID | String | UUID of the user role. Using, this the corresponding System.UserRole object can be retrieved as this UUID will match the UserRole's ModelGUID attribute. |
DisplayName | String | Name of the user role |