Get users eligible to enroll in an institution
curl --request POST \
--url https://pria.praxislxp.com/api/admin/userInstitutions/eligible \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"institution": "67826dfe5d387207aabd6fc1",
"search": "john"
}
'{
"success": true,
"data": [
{
"user": {
"_id": "67826dfe5d387207aabd6fc1",
"fname": "John",
"lname": "Doe",
"email": "john@example.com",
"accountType": "user"
},
"institutions": [
{
"_id": "<string>",
"name": "<string>"
}
]
}
],
"total": 42
}Admin Entitlements
Get users eligible to enroll in an institution
Returns users who are not yet members of the specified institution. Results are capped at 100. If no search term is provided, returns the first 100 eligible users. With a search term (2+ chars), filters by name or email.
POST
/
api
/
admin
/
userInstitutions
/
eligible
Get users eligible to enroll in an institution
curl --request POST \
--url https://pria.praxislxp.com/api/admin/userInstitutions/eligible \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"institution": "67826dfe5d387207aabd6fc1",
"search": "john"
}
'{
"success": true,
"data": [
{
"user": {
"_id": "67826dfe5d387207aabd6fc1",
"fname": "John",
"lname": "Doe",
"email": "john@example.com",
"accountType": "user"
},
"institutions": [
{
"_id": "<string>",
"name": "<string>"
}
]
}
],
"total": 42
}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
Body
application/json
Was this page helpful?
⌘I