Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
24,184 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm using the validator at https://scimvalidator.microsoft.com/. I'm passing 17 and failing 4.
One of the failing tests is: PATCH /Users/Id - Patch User - Disable User
Error Details: Response from a GET and filter request on a disabled User should have attribute active
Initial Resource Creation Request:
{
"active": true,
"displayName": "XKWLCONOGMVT",
"emails": [
{
"type": "work",
"value": "******@prohaska.biz"
}
],
"externalId": "9950b140-90a0-4201-9d65-b5f209fb4cd0",
"name": {
"formatted": "Aric",
"familyName": "Nia",
"givenName": "Sandy"
},
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"userName": "******@romaguera.uk"
}
HTTP Request:
GET https://site.com/scim/v2/20/Users?filter=userName+eq+"dale.mohr%40romaguera.uk"
Response Body:
{
"Resources": [
{
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"userName": "******@romaguera.uk",
"id": "2746",
"externalId": "9950b140-90a0-4201-9d65-b5f209fb4cd0",
"name": {
"formatted": "Aric",
"familyName": "Nia",
"givenName": "Sandy",
"middleName": null,
"honorificPrefix": "",
"honorificSuffix": null
},
"displayName": "XKWLCONOGMVT",
"emails": [
{
"value": "******@prohaska.biz",
"type": "work",
"primary": true
}
],
"phoneNumbers": [],
"addresses": null,
"active": false,
"meta": {
"ResourceType": "User",
"Created": "2025-03-25T16:17:00",
"LastModified": "2025-03-25T20:19:00",
"Version": null,
"Location": null
}
}
],
"itemsPerPage": 1,
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:ListResponse"
],
"startIndex": 1,
"totalResults": 1
}