Bulk delete SSO providers
curl --request POST \
--url https://pria.praxislxp.com/api/admin/ssoProviders/bulk-delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
]
}
'{
"success": true,
"deleted": 123,
"skipped": [
{
"id": "<string>",
"reason": "<string>"
}
]
}Admin - SSO Providers
Bulk delete SSO providers
Permanently deletes many SSO providers by id (hard delete ? no soft-delete state on this model). Each target is authorized per-record (sso.delete RAP on its institution) and its cached OAuth client is cleared. Non-permitted, not-found, and invalid ids are reported in the skip list and never deleted.
POST
/
api
/
admin
/
ssoProviders
/
bulk-delete
Bulk delete SSO providers
curl --request POST \
--url https://pria.praxislxp.com/api/admin/ssoProviders/bulk-delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
]
}
'{
"success": true,
"deleted": 123,
"skipped": [
{
"id": "<string>",
"reason": "<string>"
}
]
}Was this page helpful?
⌘I