Update user institution attributes such as account type, status, etc.
curl --request PUT \
--url https://pria.praxislxp.com/api/admin/userInstitution/{userId} \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"accountType": "admin",
"entitlements": [
"institutions.list",
"institutions.add",
"users.list",
"users.edit"
],
"status": "active"
}
'{
"success": true,
"message": "User Institution updated!"
}Admin Entitlements
Update user institution attributes such as account type, status, etc.
Updates the account type for a specific user in the institution
PUT
/
api
/
admin
/
userInstitution
/
{userId}
Update user institution attributes such as account type, status, etc.
curl --request PUT \
--url https://pria.praxislxp.com/api/admin/userInstitution/{userId} \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"accountType": "admin",
"entitlements": [
"institutions.list",
"institutions.add",
"users.list",
"users.edit"
],
"status": "active"
}
'{
"success": true,
"message": "User Institution updated!"
}Documentation Index
Fetch the complete documentation index at: https://docs.praxis-ai.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
JWT token passed in x-access-token header
Path Parameters
The unique identifier of the user
Body
application/json
Was this page helpful?
⌘I