Get authorization for a resource type action
Log in to add to favouritesGets an authorization confirmation for the requested user, resource type and action.
GET /api/management/projects/{projectId}/security/permissions/{resourceType}/actions/{action}?userId={userId}
Parameters
Name | Parameter type | Type | Format | Description |
---|---|---|---|---|
projectId | path | string | The project identifier, e.g. "movieDb". Found in the project overview screen of the management console. | |
resourceType | path | string | The type of resource to retrieve permissions for. Permitted values are: | |
action | path | string | Name of the action to check authorization for. The possible actions are: | |
userId | query | string | The optional id of the user to check authorization for. |
Example request
GET: /api/management/projects/movieDb/security/permissions/webhookSubscriptions/actions/create/?userId=a.user
Response message
HTTP status code | Reason | Response model |
---|---|---|
200 | The action is authorized | Authorized true |
404 | Not authorized for action | Error |
500 | InternalServerError | Error |
Example request
{
"authorized": true
}