GET
/v1/mgmt/outbound/scim/{appId}Authorization
Descope Project ID and Management Key AuthorizationBearer <token>
Project ID:Management Key as bearer token.
In: header
Path Parameters
appId*string
Load an outbound SCIM configuration by id. Response merges connector config with webhook status (enabled flag, last export/processing times, failure counter).
curl -X GET "https://api.descope.com/v1/mgmt/outbound/scim/string"{ "configuration": { "appId": "string", "configuration": {}, "enabled": true, "lastExportTime": 0, "lastProcessingTime": 0, "failures": 0, "version": "string" }}export interface Response {configuration?: {appId?: stringconfiguration?: {}enabled?: booleanlastExportTime?: numberlastProcessingTime?: numberfailures?: numberversion?: string}} Was this helpful?