API ReferenceManagementOutbound Scim Management
POST
/v1/mgmt/outbound/scim/enabled/set

Authorization

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?