Skip to main content
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>"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT token passed in authorization header

Body

application/json
ids
string[]
required
Maximum array length: 500

Response

Bulk delete applied

success
boolean
deleted
integer
skipped
object[]