Bulk hard-delete multiple entitlement memberships
curl --request POST \
--url https://pria.praxislxp.com/api/admin/userInstitutions/bulk-delete \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"ids": [
"<string>"
]
}
'{
"success": true,
"deleted": 123,
"skipped": [
{
"id": "<string>",
"reason": "<string>"
}
]
}Admin Entitlements
Bulk hard-delete multiple entitlement memberships
Permanently removes many UserInstitution memberships by id (a HARD delete, mirroring the single delete ? not a soft status flip). Each target is authorized per-row (institutions.edit RAP on the row’s institution). Returns the number deleted plus a per-id skip list.
POST
/
api
/
admin
/
userInstitutions
/
bulk-delete
Bulk hard-delete multiple entitlement memberships
curl --request POST \
--url https://pria.praxislxp.com/api/admin/userInstitutions/bulk-delete \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"ids": [
"<string>"
]
}
'{
"success": true,
"deleted": 123,
"skipped": [
{
"id": "<string>",
"reason": "<string>"
}
]
}Was this page helpful?
⌘I