Expose API to add grant user staff and superuser privileges
${LMS_URL}/sn-api
POST /manager-access/grant_access
The JSON body requires one parameters.
email: An existing user.
Sample request
{
"email": "admin@example.com"
}POST /manager-access/revoke_access
The JSON body requires one parameters.
email: An existing user.
Sample request
{
"email": "admin@example.com"
}