POST
/v1/mgmt/outbound/scim/enabled/setAuthorization
Descope Project ID and Management Key AuthorizationBearer <token>
Project ID:Management Key as bearer token.
In: header
Request Body
application/json
appId?string
enabled?boolean
Enable or disable a specific outbound SCIM configuration. Separate from Update because enable/disable is a high-frequency toggle.
curl -X POST "https://api.descope.com/v1/mgmt/outbound/scim/enabled/set" \ -H "Content-Type: application/json" \ -d '{}'{ "configuration": { "appId": "string", "configuration": {}, "enabled": true, "lastExportTime": 0, "lastProcessingTime": 0, "failures": 0, "version": "string" }}export interface Response {configuration?: OutboundSCIMConfiguration}export interface OutboundSCIMConfiguration {appId?: stringconfiguration?: {}enabled?: booleanlastExportTime?: numberlastProcessingTime?: numberfailures?: numberversion?: string} Was this helpful?
Load outbound SCIM configuration GET
Load an outbound SCIM configuration by id. Response merges connector config with webhook status (enabled flag, last export/processing times, failure counter).
Update outbound SCIM configuration POST
Update an existing outbound SCIM configuration, using a valid management key.