Get all SCIM configurations

get

/admin/scimConfigurations

Request

Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : SCIMConfigurations
Type: array
Show Source
Nested Schema : SCIMConfiguration
Type: object
Show Source
Match One Schema
Show Source
Nested Schema : profiles
Type: object
Additional Properties Allowed
Show Source
Nested Schema : additionalProperties
Type: object
Show Source
Nested Schema : group-assignment
Type: array
Show Source
Nested Schema : scim-custom-attr-mapping
Type: object
Additional Properties Allowed
Show Source
Nested Schema : scim-rfc7643-mapping
Type: object
Additional Properties Allowed
Show Source
  • Default Value: FORWARD
    Allowed Values: [ "FORWARD", "SWALLOW" ]
Nested Schema : additionalProperties
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Match One Schema
Show Source

400 Response

Bad Request
Body ()
Root Schema : Error
Type: object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source

401 Response

Unauthorized
Body ()
Root Schema : Error
Type: object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source

403 Response

Forbidden
Body ()
Root Schema : Error
Type: object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source

404 Response

Not Found
Body ()
Root Schema : Error
Type: object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source

500 Response

Internal Server Error
Body ()
Root Schema : Error
Type: object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source
Back to Top

Examples

The following example shows how to get all scim configurations by submitting a GET request on the REST resource using cURL.

cURL Command

curl -H 'Authorization: Bearer <Token>' -X GET https://{FABRIC_HOST}/admin/scimConfigurations -H "Content-Type: application/json" | json_pp

Example of Response Body

The following shows an example of the response body in JSON format.

{
    "target-connection-descriptor-name": "flytxtjmbfz",
    "target-connection-descriptor-namespace": "dx-prod",
    "profiles": {
        "subscriber": {
            "scim-rfc7643-mapping": {
                "bar": "FORWARD",
                "foo": "SWALLOW",
                "name": "SWALLOW"
            },
            "scim-custom-attr-mapping": {
                "urn:scim:schemas:extension:custom:1.0:User": [
                    {
                        "attribute-name": "donot-forward-attr",
                        "attribute-type": "STRING",
                        "required": false,
                        "mode": "SWALLOW"
                    },
                    {
                        "attribute-name": "pass-through-attr",
                        "attribute-type": "STRING",
                        "required": false,
                        "mode": "FORWARD"
                    },
                    {
                        "attribute-name": "this-needs-to-be-mapped-attr",
                        "attribute-type": "DATETIMESTRING",
                        "required": true,
                        "mode": "MAP",
                        "target-attribute-name": "foo-target-attribute"
                    }
                ]
            },
            "group-assignment": [
                "oracleGroup"
            ]
        }
    },
    "id": "flytxtjmbfz9cj2b",
    "target-connection-descriptor-href": "/connectionDescriptors/flytxtjmbfz"
}
Back to Top