schemaId is Null (SCIM 2.0)

I am getting aggregation error “SchemaId is Null”. I do not have access to modify the response coming from the API.

The response:

{
    "totalResults": 1,
    "itemsPerPage": 500,
    "startIndex": 1,
    "schemas": [
        "urn:ietf:params:scim:api:messages:2.0:ListResponse"
    ],
    "Resources": [
        {
            "schemas": [
                "urn:ietf:params:scim:schemas:core:2.0:User"
            ],
            "id": "111",
            "externalId": null,
            "meta": {
                "created": "2015-09-15T16:23:38.84+00:00",
                "location": "https://api.abc.com/scim/v2/users/111"
            },
            "userName": "[email protected]",
            "name": {
                "givenName": "Jane",
                "familyName": "Doe"
            },
            "displayName": "Jane Doe",
            "active": true,
            "emails": [
                {
                    "value": "[email protected]",
                    "primary": true
                }
            ],
            "groups": [
                {
                    "value": "222",
                    "display": "Liason - User"
                },
                {
                    "value": "333",
                    "display": "User Authorization"
                },
                {
                    "value": "444",
                    "display": "Accounting Dashboard"
                },
                {
                    "value": "555",
                    "display": "Manage SSO"
                },
                {
                    "value": "666",
                    "display": "User Administration"
                }
            ]
        }
    ]
}

Hi @erie-erie - Might be worthwhile checking this thread - schemaId is null when attempting to discover schema SCIM 2.0

Yes, I already went through it but my response is already responding with the structure that is given in the fix of that thread.

1 Like

I solved this using web service connector for SCIM source