Bulk-set the status of multiple users
curl --request PUT \
--url https://pria.praxislxp.com/api/admin/users/bulk-status \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"ids": [
"<string>"
]
}
'{
"success": true,
"updated": 123,
"skipped": [
{
"id": "<string>",
"reason": "<string>"
}
]
}Admin Users
Bulk-set the status of multiple users
Sets status to active or inactive for many users in one request. Each target is authorized per-user (users.edit RAP), so a per-institution admin only affects their own users; the caller’s own id is always skipped. Returns the number updated plus a per-id skip list.
PUT
/
api
/
admin
/
users
/
bulk-status
Bulk-set the status of multiple users
curl --request PUT \
--url https://pria.praxislxp.com/api/admin/users/bulk-status \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"ids": [
"<string>"
]
}
'{
"success": true,
"updated": 123,
"skipped": [
{
"id": "<string>",
"reason": "<string>"
}
]
}Authorizations
JWT token passed in x-access-token header
Body
application/json
Was this page helpful?
⌘I