Update a Setting
patch
                    /admin/v1/Settings/{id}
Request
Supported Media Types
                - application/scim+json
- application/json
Path Parameters
                - 
                    id: string
                    
                    ID of the resource
Query Parameters
                - 
                        attributeSets(optional): string
                        
                        A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If "attributes" query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.Allowed Values:[ "all", "always", "never", "request", "default" ]
- 
                        attributes(optional): string
                        
                        A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
Header Parameters
                - 
                        Authorization: string
                        
                        The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- 
                        Content-Type: string
                        
                        Media Type
- 
                        RESOURCE_TYPE_SCHEMA_VERSION(optional): string
                        
                        An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
Update the Settings with SCIM Patch schema.
                
                
                
                Before you specify an attribute-value in a request to update a resource, please check the 'mutability' property of that attribute in the resource-type schema below. Clicking on an attribute-row will expand that row to show the SCIM++ Properties of that attribute.
- Your request to create, update or replace a resource may specify in its payload a value for any attribute that is defined as mutability:readWrite or mutability:writeOnly or mutability:immutable:- The SCIM APIs to create a resource will ignore silently any value that you specify for an attribute that is defined as mutability:readOnly.
- The SCIM APIs to update or replace a resource will fail with an error 400 Bad Request if you specify a value for an attribute that is defined as mutability:readOnly.
- Similarly, the SCIM APIs to update or replace a resource will fail with an error 400 Bad Request if you specify any value for an attribute that is defined as mutability:immutable and that already has a value in the specified resource.
 
Also, before you use the query-parameter attributes to request specific attributes, please check the 'returned' property of that attribute in the resource-type schema below:
- Your request to read a resource (or to search a resource-type) can specify as the value of attributes any attributes that are defined as returned:default or returned:request or returned:always:
- If you request a specific set of attributes, the SCIM APIs to read a resource (or to search a resource-type) will return in each resource the set of attributes that you requested, as well as any attribute that is defined as returned:always.
- If you do not request a specific set of attributes, the SCIM APIs to read a resource (or to search a resource-type) will return in each resource the the set of attributes defined as returned:default, as well as any attribute that is defined as returned:always.
- The SCIM APIs to read a resource (or to search a resource-type) will ignore silently any request to return an attribute that is defined as returned:never.
Root Schema : PatchOp
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectSee Section 3.5.2. HTTP PATCH is an OPTIONAL server function that enables clients to update one or more attributes of a SCIM resource using a sequence of operations to "add", "remove", or "replace" values. Clients may discover service provider support for PATCH by querying the service provider configuration. The general form of the SCIM patch request is based on JavaScript Object Notation (JSON) Patch [RFC6902]. One difference between SCIM patch and JSON patch is that SCIM servers do not support array indexing and do not support [RFC6902] operation types relating to array element manipulation such as "move". A patch request, regardless of the number of operations, SHALL be treated as atomic. If a single operation encounters an error condition, the original SCIM resource MUST be restored, and a failure status SHALL be returned.
    
    
    
    
        Show Source
        - 
            Operations: 
            array  Operations
            
            The body of an HTTP PATCH request MUST contain the attribute "Operations", whose value is an array of one or more patch operations.
- 
            schemas: 
            array  schemas
            
            The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
Nested Schema : Operations
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayThe body of an HTTP PATCH request MUST contain the attribute "Operations", whose value is an array of one or more patch operations.
    
    
    
    
    
        Show Source
        - 
            Array of: 
                object  Operations
            
            Each patch operation object MUST have exactly one "op" member, whose value indicates the operation to perform and MAY be one of "add", "remove", or "replace". See Section 3.5.2 for details.
Nested Schema : schemas
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayThe schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
    
    
    
    Allowed Values: 
    
    
    
        Show Source
        
        
    
    
    
    
    
    
[
    "urn:ietf:params:scim:api:messages:2.0:PatchOp"
]Nested Schema : Operations
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectEach patch operation object MUST have exactly one "op" member, whose value indicates the operation to perform and MAY be one of "add", "remove", or "replace". See Section 3.5.2 for details.
    
    
    
    
        Show Source
        - 
            op: 
            string
            Allowed Values:[ "add", "remove", "replace" ]Defines the operation to be performed for this Patch. If op=remove, value is not required.
- 
            path: 
            string
            String containing an attribute path describing the target of the operation. The "path" attribute is OPTIONAL for "add" and "replace" and is REQUIRED for "remove" operations. See Section 3.5.2 for details
- 
            value(optional): 
            string
            The value could be either a simple value attribute e.g. string or number OR complex like map of the attributes to be added or replaced OR multivalues complex attributes.q1
Response
Supported Media Types
                - application/json
- application/scim+json
200 Response
The request was successful. We updated the resource.
                
                
                    Root Schema : Settings
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectSettings schema
    
    
    
    
        Show Source
        - 
            accountAlwaysTrustScope(optional): 
            boolean
            Added In: 18.1.6
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
 
- 
            allowedDomains(optional): 
            array  allowedDomains
            
            SCIM++ Properties:- caseExact: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            allowedForgotPasswordFlowReturnUrls(optional): 
            array  allowedForgotPasswordFlowReturnUrls
            
            Added In: 19.3.3
 SCIM++ Properties:- type: string
- multiValued: true
- required: false
- mutability: readWrite
- returned: default
- uniqueness: none
- caseExact: false
 
- 
            allowedNotificationRedirectUrls(optional): 
            array  allowedNotificationRedirectUrls
            
            Added In: 2009041201
 SCIM++ Properties:- type: string
- multiValued: true
- required: false
- mutability: readWrite
- returned: default
- uniqueness: none
- caseExact: false
 
- 
            auditEventRetentionPeriod(optional): 
            integer
            Allowed Values:[ "30", "60", "90" ]Added In: 19.2.1
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
 
- 
            certificateValidation(optional): 
            object  certificateValidation
            
            Added In: 2010242156
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- 
            cloudAccountName(optional): 
            string
            Deprecated Since: 2011192329
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            cloudGateCorsSettings(optional): 
            object  cloudGateCorsSettings
            
            Added In: 2011192329
 SCIM++ Properties:- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- 
            cloudMigrationCustomUrl(optional): 
            string
            Added In: 2012271618
 SCIM++ Properties:- type: string
- multiValued: false
- required: false
- mutability: readWrite
- returned: default
- uniqueness: none
- caseExact: false
 
- 
            cloudMigrationUrlEnabled(optional): 
            boolean
            Added In: 2012271618
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 
            companyNames(optional): 
            array  companyNames
            
            SCIM++ Properties:- idcsCompositeKey: [locale]
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
 
- 
            compartmentOcid(optional): 
            string
            SCIM++ Properties:- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            contactEmails(optional): 
            array  contactEmails
            
            SCIM++ Properties:- caseExact: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            csrAccess: 
            string
            Allowed Values:[ "readOnly", "readWrite", "none" ]SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
 
- 
            customBranding(optional): 
            boolean
            SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
 
- 
            customCssLocation(optional): 
            string
            Added In: 20.1.3
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            customHtmlLocation(optional): 
            string
            Added In: 20.1.3
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            customTranslation(optional): 
            string
            Added In: 20.1.3
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            defaultCompanyNames(optional): 
            array  defaultCompanyNames
            
            Added In: 18.2.2
 SCIM++ Properties:- idcsCompositeKey: [locale]
- multiValued: true
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- 
            defaultImages(optional): 
            array  defaultImages
            
            Added In: 18.2.2
 SCIM++ Properties:- idcsCompositeKey: [type]
- multiValued: true
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- 
            defaultLoginTexts(optional): 
            array  defaultLoginTexts
            
            Added In: 18.2.2
 SCIM++ Properties:- idcsCompositeKey: [locale]
- multiValued: true
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- 
            defaultTrustScope(optional): 
            string
            Allowed Values:[ "Explicit", "Account", "Tags" ]Deprecated Since: 18.3.6
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
 
- 
            deleteInProgress(optional): 
            boolean
            SCIM++ Properties:- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 
            diagnosticLevel(optional): 
            integer
            SCIM++ Properties:- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
- uniqueness: none
 
- 
            diagnosticRecordForSearchIdentifiesReturnedResources(optional): 
            boolean
            Added In: 2011192329
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 
            diagnosticTracingUpto(optional): 
            string
            SCIM++ Properties:- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
 
- 
            domainOcid(optional): 
            string
            SCIM++ Properties:- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            enableTermsOfUse(optional): 
            boolean
            Added In: 18.2.4
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 
            externalId(optional): 
            string
            SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            id(optional): 
            string
            SCIM++ Properties:- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: always
- type: string
- uniqueness: global
 
- 
            idcsCreatedBy: 
            object  idcsCreatedBy
            
            SCIM++ Properties:- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- 
            idcsLastModifiedBy(optional): 
            object  idcsLastModifiedBy
            
            SCIM++ Properties:- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- 
            idcsLastUpgradedInRelease(optional): 
            string
            SCIM++ Properties:- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- 
            idcsPreventedOperations(optional): 
            array  idcsPreventedOperations
            
            SCIM++ Properties:- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- 
            images(optional): 
            array  images
            
            SCIM++ Properties:- idcsCompositeKey: [type]
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
 
- 
            isHostedPage(optional): 
            boolean
            Added In: 20.1.3
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 
            issuer(optional): 
            string
            Added In: 20.1.3
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            locale(optional): 
            string
            Maximum Length:50SCIM++ Properties:- caseExact: false
- idcsCanonicalValueSourceFilter: attrName eq "locales" and attrValues.value eq "$(locale)"
- idcsCanonicalValueSourceResourceType: AllowedValue
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            loginTexts(optional): 
            array  loginTexts
            
            SCIM++ Properties:- idcsCompositeKey: [locale]
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
 
- 
            meta(optional): 
            object  meta
            
            SCIM++ Properties:- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- 
            migrationStatus(optional): 
            string
            Maximum Length:200Added In: 19.2.1
 SCIM++ Properties:- caseExact: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            ocid(optional): 
            string
            Maximum Length:255SCIM++ Properties:- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
 
- 
            onPremisesProvisioning(optional): 
            boolean
            Added In: 19.2.1
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 
            preferredLanguage(optional): 
            string
            Maximum Length:50SCIM++ Properties:- caseExact: false
- idcsCanonicalValueSourceFilter: attrName eq "languages" and attrValues.value eq "$(preferredLanguage)"
- idcsCanonicalValueSourceResourceType: AllowedValue
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            prevIssuer(optional): 
            string
            Added In: 20.1.3
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: request
- type: string
- uniqueness: none
 
- 
            privacyPolicyUrl(optional): 
            string
            Added In: 18.2.4
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            purgeConfigs(optional): 
            array  purgeConfigs
            
            Deprecated Since: 19.1.6
 SCIM++ Properties:- idcsCompositeKey: [resourceName]
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
 
- 
            reAuthFactor(optional): 
            array  reAuthFactor
            
            Added In: 20.1.3
 SCIM++ Properties:- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
 
- 
            reAuthWhenChangingMyAuthenticationFactors(optional): 
            boolean
            Added In: 20.1.3
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 
            schemas: 
            array  schemas
            
            SCIM++ Properties:- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- 
            serviceAdminCannotListOtherUsers(optional): 
            boolean
            Added In: 2108190438
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
 
- 
            signingCertPublicAccess(optional): 
            boolean
            Added In: 17.3.4
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
 
- 
            subMappingAttr(optional): 
            string
            Added In: 20.1.3
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            tags(optional): 
            array  tags
            
            SCIM++ Properties:- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- 
            tenancyOcid(optional): 
            string
            SCIM++ Properties:- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            tenantCustomClaims(optional): 
            array  tenantCustomClaims
            
            Added In: 18.4.2
 SCIM++ Properties:- idcsCompositeKey: [name]
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- 
            termsOfUseUrl(optional): 
            string
            Added In: 18.2.4
 SCIM++ Properties:- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            timezone(optional): 
            string
            Maximum Length:50SCIM++ Properties:- caseExact: false
- idcsCanonicalValueSourceFilter: attrName eq "timezones" and attrValues.value eq "$(timezone)"
- idcsCanonicalValueSourceResourceType: AllowedValue
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
Nested Schema : allowedDomains
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arraySCIM++ Properties:
    
    
    
    
    
        Show Source
        
        
    
    
    
    
    
    
- caseExact: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
Nested Schema : allowedForgotPasswordFlowReturnUrls
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayAdded In: 19.3.3
SCIM++ Properties:
    
    
    
    
    
        Show Source
        
        
    
    
    
    
    
    
SCIM++ Properties:
- type: string
- multiValued: true
- required: false
- mutability: readWrite
- returned: default
- uniqueness: none
- caseExact: false
Nested Schema : allowedNotificationRedirectUrls
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayAdded In: 2009041201
SCIM++ Properties:
    
    
    
    
    
        Show Source
        
        
    
    
    
    
    
    
SCIM++ Properties:
- type: string
- multiValued: true
- required: false
- mutability: readWrite
- returned: default
- uniqueness: none
- caseExact: false
Nested Schema : certificateValidation
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectAdded In: 2010242156
SCIM++ Properties:
    
    
    
    
        Show Source
        SCIM++ Properties:
- caseExact: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- 
            crlCheckOnOCSPFailureEnabled(optional): 
            boolean
            Added In: 2010242156
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 
            crlEnabled(optional): 
            boolean
            Added In: 2010242156
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 
            crlLocation(optional): 
            string
            Added In: 2010242156
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            crlRefreshInterval(optional): 
            integer
            Added In: 2010242156
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
- uniqueness: none
 
- 
            ocspEnabled(optional): 
            boolean
            Added In: 2010242156
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 
            ocspResponderURL(optional): 
            string
            Added In: 2010242156
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            ocspSettingsResponderURLPreferred(optional): 
            boolean
            Added In: 2010242156
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 
            ocspSigningCertificateAlias(optional): 
            string
            Added In: 2010242156
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            ocspTimeoutDuration(optional): 
            integer
            Added In: 2010242156
 SCIM++ Properties:- idcsMaxValue: 10
- idcsMinValue: 1
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
- uniqueness: none
 
- 
            ocspUnknownResponseStatusAllowed(optional): 
            boolean
            Added In: 2010242156
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
Nested Schema : cloudGateCorsSettings
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectAdded In: 2011192329
SCIM++ Properties:
    
    
    
    
        Show Source
        SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- 
            cloudGateCorsAllowedOrigins(optional): 
            array  cloudGateCorsAllowedOrigins
            
            Added In: 2011192329
 SCIM++ Properties:- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            cloudGateCorsAllowNullOrigin(optional): 
            boolean
            Added In: 2011192329
 SCIM++ Properties:- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 
            cloudGateCorsEnabled(optional): 
            boolean
            Added In: 2011192329
 SCIM++ Properties:- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
Nested Schema : companyNames
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arraySCIM++ Properties:
    
    
    
    
    
        Show Source
        - idcsCompositeKey: [locale]
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- 
            Array of: 
                object  companyNames
            
            Name of the company in different locales
Nested Schema : contactEmails
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arraySCIM++ Properties:
    
    
    
    
    
        Show Source
        
        
    
    
    
    
    
    
- caseExact: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
Nested Schema : defaultCompanyNames
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayAdded In: 18.2.2
SCIM++ Properties:
    
    
    
    
    
        Show Source
        SCIM++ Properties:
- idcsCompositeKey: [locale]
- multiValued: true
- mutability: readOnly
- required: false
- returned: default
- type: complex
- 
            Array of: 
                object  defaultCompanyNames
            
            Default name of the Company in different locales
Nested Schema : defaultImages
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayAdded In: 18.2.2
SCIM++ Properties:
    
    
    
    
    
        Show Source
        SCIM++ Properties:
- idcsCompositeKey: [type]
- multiValued: true
- mutability: readOnly
- required: false
- returned: default
- type: complex
- 
            Array of: 
                object  defaultImages
            
            References to various images
Nested Schema : defaultLoginTexts
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayAdded In: 18.2.2
SCIM++ Properties:
    
    
    
    
    
        Show Source
        SCIM++ Properties:
- idcsCompositeKey: [locale]
- multiValued: true
- mutability: readOnly
- required: false
- returned: default
- type: complex
- 
            Array of: 
                object  defaultLoginTexts
            
            Default Login text in different locales
Nested Schema : idcsCreatedBy
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectSCIM++ Properties:
    
    
    
    
        Show Source
        - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- 
            $ref(optional): 
            string
            SCIM++ Properties:- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- 
            display(optional): 
            string
            SCIM++ Properties:- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            ocid(optional): 
            string
            SCIM++ Properties:- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
 
- 
            type(optional): 
            string
            Allowed Values:[ "User", "App" ]SCIM++ Properties:- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            value: 
            string
            SCIM++ Properties:- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
Nested Schema : idcsLastModifiedBy
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectSCIM++ Properties:
    
    
    
    
        Show Source
        - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- 
            $ref(optional): 
            string
            SCIM++ Properties:- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- 
            display(optional): 
            string
            SCIM++ Properties:- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            ocid(optional): 
            string
            SCIM++ Properties:- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
 
- 
            type(optional): 
            string
            Allowed Values:[ "User", "App" ]SCIM++ Properties:- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            value: 
            string
            SCIM++ Properties:- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
 
Nested Schema : idcsPreventedOperations
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arraySCIM++ Properties:
    
    
    
    - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
Allowed Values: 
    
    
    
        Show Source
        
        
    
    
    
    
    
    
[
    "replace",
    "update",
    "delete"
]Nested Schema : images
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arraySCIM++ Properties:
    
    
    
    
    
        Show Source
        - idcsCompositeKey: [type]
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- 
            Array of: 
                object  images
            
            References to various images
Nested Schema : loginTexts
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arraySCIM++ Properties:
    
    
    
    
    
        Show Source
        - idcsCompositeKey: [locale]
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- 
            Array of: 
                object  loginTexts
            
            Login text in different locales
Nested Schema : meta
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectSCIM++ Properties:
    
    
    
    
        Show Source
        - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- 
            created(optional): 
            string
            SCIM++ Properties:- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
 
- 
            lastModified(optional): 
            string
            SCIM++ Properties:- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
 
- 
            location(optional): 
            string
            SCIM++ Properties:- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            resourceType(optional): 
            string
            SCIM++ Properties:- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            version(optional): 
            string
            SCIM++ Properties:- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
Nested Schema : purgeConfigs
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayDeprecated Since: 19.1.6
SCIM++ Properties:
    
    
    
    
    
        Show Source
        SCIM++ Properties:
- idcsCompositeKey: [resourceName]
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- 
            Array of: 
                object  purgeConfigs
            
            Purge Configs for different Resource Types
Nested Schema : reAuthFactor
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayAdded In: 20.1.3
SCIM++ Properties:
    
    
    
    SCIM++ Properties:
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
Allowed Values: 
    
    
    
        Show Source
        
        
    
    
    
    
    
    
[
    "password"
]Nested Schema : schemas
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arraySCIM++ Properties:
    
    
    
    
    
        Show Source
        
        
    
    
    
    
    
    
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
Nested Schema : tenantCustomClaims
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayAdded In: 18.4.2
SCIM++ Properties:
    
    
    
    
    
        Show Source
        SCIM++ Properties:
- idcsCompositeKey: [name]
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- 
            Array of: 
                object  tenantCustomClaims
            
            Custom claims associated with the specific tenant
Nested Schema : cloudGateCorsAllowedOrigins
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayAdded In: 2011192329
SCIM++ Properties:
    
    
    
    
    
        Show Source
        
        
    
    
    
    
    
    
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
Nested Schema : companyNames
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectName of the company in different locales
    
    
    
    
        Show Source
        - 
            locale: 
            string
            SCIM++ Properties:- idcsCanonicalValueSourceFilter: attrName eq "locales" and attrValues.value eq "$(companyNames.locale)"
- idcsCanonicalValueSourceResourceType: AllowedValue
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
 
- 
            value: 
            string
            Maximum Length:50SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
 
Nested Schema : defaultCompanyNames
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectDefault name of the Company in different locales
    
    
    
    
        Show Source
        - 
            locale: 
            string
            Added In: 18.2.2
 SCIM++ Properties:- idcsCanonicalValueSourceFilter: attrName eq "locales" and attrValues.value eq "$(companyNames.locale)"
- idcsCanonicalValueSourceResourceType: AllowedValue
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
 
- 
            value: 
            string
            Maximum Length:50Added In: 18.2.2
 SCIM++ Properties:- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
 
Nested Schema : defaultImages
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectReferences to various images
    
    
    
    
        Show Source
        - 
            display(optional): 
            string
            Added In: 18.2.2
 SCIM++ Properties:- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
 
- 
            type: 
            string
            Allowed Values:[ "desktop logo", "mobile logo", "desktop portal header", "mobile portal header", "email header", "email footer", "self registration profile header logo", "self registration profile footer logo" ]Added In: 18.2.2
 SCIM++ Properties:- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
 
- 
            value: 
            string
            Added In: 18.2.2
 SCIM++ Properties:- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: reference
 
Nested Schema : defaultLoginTexts
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectDefault Login text in different locales
    
    
    
    
        Show Source
        - 
            locale: 
            string
            Added In: 18.2.2
 SCIM++ Properties:- idcsCanonicalValueSourceFilter: attrName eq "locales" and attrValues.value eq "$(loginTexts.locale)"
- idcsCanonicalValueSourceResourceType: AllowedValue
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
 
- 
            value: 
            string
            Maximum Length:250Added In: 18.2.2
 SCIM++ Properties:- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- idcsSanitize: true
 
Nested Schema : images
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectReferences to various images
    
    
    
    
        Show Source
        - 
            display(optional): 
            string
            SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
 
- 
            type: 
            string
            Allowed Values:[ "desktop logo", "mobile logo", "desktop portal header", "mobile portal header", "email header", "email footer", "self registration profile header logo", "self registration profile footer logo", "sign in background image" ]SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
 
- 
            value: 
            string
            SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: reference
 
Nested Schema : loginTexts
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectLogin text in different locales
    
    
    
    
        Show Source
        - 
            locale: 
            string
            SCIM++ Properties:- idcsCanonicalValueSourceFilter: attrName eq "locales" and attrValues.value eq "$(loginTexts.locale)"
- idcsCanonicalValueSourceResourceType: AllowedValue
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
 
- 
            value: 
            string
            Maximum Length:250SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- idcsSanitize: true
- type: string
 
Nested Schema : purgeConfigs
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectPurge Configs for different Resource Types
    
    
    
    
        Show Source
        - 
            resourceName: 
            string
            Deprecated Since: 19.1.6
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
 
- 
            retentionPeriod: 
            integer
            Allowed Values:[ "30", "60", "90" ]Deprecated Since: 19.1.6
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: integer
 
Nested Schema : tenantCustomClaims
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectCustom claims associated with the specific tenant
    
    
    
    
        Show Source
        - 
            allScopes: 
            boolean
            Added In: 18.4.2
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
 
- 
            expression: 
            boolean
            Added In: 18.4.2
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
 
- 
            mode: 
            string
            Allowed Values:[ "always", "request", "never" ]Added In: 18.4.2
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- 
            name: 
            string
            Maximum Length:100Added In: 18.4.2
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: server
 
- 
            scopes(optional): 
            array  scopes
            
            Added In: 18.4.2
 SCIM++ Properties:- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
            tokenType: 
            string
            Allowed Values:[ "AT", "IT", "BOTH" ]Added In: 18.4.2
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- 
            value: 
            string
            Maximum Length:100Added In: 18.4.2
 SCIM++ Properties:- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
Nested Schema : scopes
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayAdded In: 18.4.2
SCIM++ Properties:
    
    
    
    
    
        Show Source
        
        
    
    
    
    
    
    
SCIM++ Properties:
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
400 Response
Bad or invalid request
                
                
                    Root Schema : Error
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectThe SCIM Protocol uses the HTTP status response status codes defined
   in Section 6 [RFC7231] to indicate operation success or failure.
   In addition to returning a HTTP response code implementers MUST return
   the errors in the body of the response in the client requested format
   containing the error response and, per the HTTP specification, human-
   readable explanations.
    
    
    
    
        Show Source
        - 
            detail(optional): 
            string
            A detailed, human readable message. OPTIONAL
- 
            schemas: 
            array  schemas
            
            The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for SCIM specified Error and Extn Error Schema. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
- 
            status: 
            string
            The HTTP status code (see Section 6 [RFC7231]) expressed as a JSON String
- 
            urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error(optional): 
            object  urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error
            
            Extension schema for error messages providing more details with the exception status.
 Returns messageId corresponding to the detailed error message and optionally additional data related to the error condition - for example reason for authentication failure such as user is disabled or locked.
Nested Schema : schemas
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayThe schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for SCIM specified Error and Extn Error Schema. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
    
    
    
    Allowed Values: 
    
    
    
        Show Source
        
        
    
    
    
    
    
    
[
    "urn:ietf:params:scim:api:messages:2.0:Error",
    "urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error"
]Nested Schema : urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectExtension schema for error messages providing more details with the exception status. 
Returns messageId corresponding to the detailed error message and optionally additional data related to the error condition - for example reason for authentication failure such as user is disabled or locked.
    
    
    
    
        Show Source
        Returns messageId corresponding to the detailed error message and optionally additional data related to the error condition - for example reason for authentication failure such as user is disabled or locked.
- 
            additionalData(optional): 
            object  additionalData
            
            Contains Map based additional data for the exception message (as key-value pair). All keys and values are in string format.
- 
            messageId(optional): 
            string
            Internal error keyword pointing to the exception status message. REQUIRED.
Nested Schema : additionalData
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectContains Map based additional data for the exception message (as key-value pair). All keys and values are in string format.
    
    
    
    
    
    
    
    
    
    
401 Response
The supplied credentials, if any, are not sufficient to access the resource.
                
                
                    Root Schema : Error
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectThe SCIM Protocol uses the HTTP status response status codes defined
   in Section 6 [RFC7231] to indicate operation success or failure.
   In addition to returning a HTTP response code implementers MUST return
   the errors in the body of the response in the client requested format
   containing the error response and, per the HTTP specification, human-
   readable explanations.
    
    
    
    
        Show Source
        - 
            detail(optional): 
            string
            A detailed, human readable message. OPTIONAL
- 
            schemas: 
            array  schemas
            
            The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for SCIM specified Error and Extn Error Schema. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
- 
            status: 
            string
            The HTTP status code (see Section 6 [RFC7231]) expressed as a JSON String
- 
            urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error(optional): 
            object  urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error
            
            Extension schema for error messages providing more details with the exception status.
 Returns messageId corresponding to the detailed error message and optionally additional data related to the error condition - for example reason for authentication failure such as user is disabled or locked.
Nested Schema : schemas
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayThe schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for SCIM specified Error and Extn Error Schema. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
    
    
    
    Allowed Values: 
    
    
    
        Show Source
        
        
    
    
    
    
    
    
[
    "urn:ietf:params:scim:api:messages:2.0:Error",
    "urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error"
]Nested Schema : urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectExtension schema for error messages providing more details with the exception status. 
Returns messageId corresponding to the detailed error message and optionally additional data related to the error condition - for example reason for authentication failure such as user is disabled or locked.
    
    
    
    
        Show Source
        Returns messageId corresponding to the detailed error message and optionally additional data related to the error condition - for example reason for authentication failure such as user is disabled or locked.
- 
            additionalData(optional): 
            object  additionalData
            
            Contains Map based additional data for the exception message (as key-value pair). All keys and values are in string format.
- 
            messageId(optional): 
            string
            Internal error keyword pointing to the exception status message. REQUIRED.
Nested Schema : additionalData
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectContains Map based additional data for the exception message (as key-value pair). All keys and values are in string format.
    
    
    
    
    
    
    
    
    
    
404 Response
The requested resource was not found.
                
                
                    Root Schema : Error
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectThe SCIM Protocol uses the HTTP status response status codes defined
   in Section 6 [RFC7231] to indicate operation success or failure.
   In addition to returning a HTTP response code implementers MUST return
   the errors in the body of the response in the client requested format
   containing the error response and, per the HTTP specification, human-
   readable explanations.
    
    
    
    
        Show Source
        - 
            detail(optional): 
            string
            A detailed, human readable message. OPTIONAL
- 
            schemas: 
            array  schemas
            
            The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for SCIM specified Error and Extn Error Schema. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
- 
            status: 
            string
            The HTTP status code (see Section 6 [RFC7231]) expressed as a JSON String
- 
            urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error(optional): 
            object  urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error
            
            Extension schema for error messages providing more details with the exception status.
 Returns messageId corresponding to the detailed error message and optionally additional data related to the error condition - for example reason for authentication failure such as user is disabled or locked.
Nested Schema : schemas
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayThe schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for SCIM specified Error and Extn Error Schema. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
    
    
    
    Allowed Values: 
    
    
    
        Show Source
        
        
    
    
    
    
    
    
[
    "urn:ietf:params:scim:api:messages:2.0:Error",
    "urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error"
]Nested Schema : urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectExtension schema for error messages providing more details with the exception status. 
Returns messageId corresponding to the detailed error message and optionally additional data related to the error condition - for example reason for authentication failure such as user is disabled or locked.
    
    
    
    
        Show Source
        Returns messageId corresponding to the detailed error message and optionally additional data related to the error condition - for example reason for authentication failure such as user is disabled or locked.
- 
            additionalData(optional): 
            object  additionalData
            
            Contains Map based additional data for the exception message (as key-value pair). All keys and values are in string format.
- 
            messageId(optional): 
            string
            Internal error keyword pointing to the exception status message. REQUIRED.
Nested Schema : additionalData
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectContains Map based additional data for the exception message (as key-value pair). All keys and values are in string format.
    
    
    
    
    
    
    
    
    
    
500 Response
We couldn't return the representation due to an internal server error.
                
                
                    Root Schema : Error
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectThe SCIM Protocol uses the HTTP status response status codes defined
   in Section 6 [RFC7231] to indicate operation success or failure.
   In addition to returning a HTTP response code implementers MUST return
   the errors in the body of the response in the client requested format
   containing the error response and, per the HTTP specification, human-
   readable explanations.
    
    
    
    
        Show Source
        - 
            detail(optional): 
            string
            A detailed, human readable message. OPTIONAL
- 
            schemas: 
            array  schemas
            
            The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for SCIM specified Error and Extn Error Schema. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
- 
            status: 
            string
            The HTTP status code (see Section 6 [RFC7231]) expressed as a JSON String
- 
            urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error(optional): 
            object  urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error
            
            Extension schema for error messages providing more details with the exception status.
 Returns messageId corresponding to the detailed error message and optionally additional data related to the error condition - for example reason for authentication failure such as user is disabled or locked.
Nested Schema : schemas
    
      
      Type: 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    arrayThe schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for SCIM specified Error and Extn Error Schema. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. REQUIRED.
    
    
    
    Allowed Values: 
    
    
    
        Show Source
        
        
    
    
    
    
    
    
[
    "urn:ietf:params:scim:api:messages:2.0:Error",
    "urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error"
]Nested Schema : urn:ietf:params:scim:api:oracle:idcs:extension:messages:Error
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectExtension schema for error messages providing more details with the exception status. 
Returns messageId corresponding to the detailed error message and optionally additional data related to the error condition - for example reason for authentication failure such as user is disabled or locked.
    
    
    
    
        Show Source
        Returns messageId corresponding to the detailed error message and optionally additional data related to the error condition - for example reason for authentication failure such as user is disabled or locked.
- 
            additionalData(optional): 
            object  additionalData
            
            Contains Map based additional data for the exception message (as key-value pair). All keys and values are in string format.
- 
            messageId(optional): 
            string
            Internal error keyword pointing to the exception status message. REQUIRED.
Nested Schema : additionalData
    
      Type: 
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    objectContains Map based additional data for the exception message (as key-value pair). All keys and values are in string format.