Skip to content
Enterprise

SCIM provisioning

Automatically provision and de-provision members from your identity provider with SCIM 2.0.

SCIM lets your IdP create, update, and deactivate org members automatically — so access follows your directory instead of manual invites. It pairs with Enterprise SSO.

Point your IdP’s SCIM connector at:

https://cloud.backlex.com/api/scim/v2

The exact base URL for your org is shown on the SSO/SCIM settings card.

SCIM authenticates with a bearer token, minted from settings or the API. It’s returned once:

Terminal window
curl -X POST https://cloud.backlex.com/api/org/<org>/scim/token \
-H "Authorization: Bearer pak_..."

Paste the token into your IdP’s SCIM configuration alongside the base URL.

  • A user provisioned over SCIM becomes an org member (provisionedBy: scim:<provider>).
  • Deactivating the user in your IdP suspends the member here.
  • Status flows through the directory — no manual invite/remove for managed users.

Revoking turns off SCIM provisioning for the org:

Terminal window
curl -X DELETE https://cloud.backlex.com/api/org/<org>/scim/token \
-H "Authorization: Bearer pak_..."

Minting and revoking SCIM tokens requires the admin role and is audited.