Skip to main content

Set SCIM settings.

POST <your-unleash-url>/api/admin/scim-settings

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Sets new settings for SCIM provisioning.

Request

Body

required

#/components/schemas/setScimSettingsSchema

  • enabled boolean required

    Whether SCIM provisioning is currently enabled.

  • assumeControlOfExisting boolean required

    Whether SCIM assumes control of existing users

Responses

This response has no body.

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Request

Base URL
<your-unleash-url>
Security Scheme
apiKey
Body required
{
"enabled": true,
"assumeControlOfExisting": false
}
curl / cURL
curl -L -X POST '<your-unleash-url>/api/admin/scim-settings' \
-H 'Content-Type: application/json' \
-H 'Authorization: <API_KEY_VALUE>' \
--data-raw '{
"enabled": true,
"assumeControlOfExisting": false
}'