Forum Discussion
Error in Manager data synchronization via SCIM
To resolve your SCIM manager synchronization issues, try these steps
Provide Manager Info Correctly: Use this format in your GET response:
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User": {
"manager": {
"value": "managerId",
"$ref": "https://your-endpoint/Users/managerId"
}
}
Handle Manager Removal: Azure omits the manager field in PATCH requests when removed. Ensure your endpoint detects its absence or handles the "remove" operation for the manager path:
{
"op": "remove",
"path": "urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager"
}
Fix the Error: Ensure your SCIM endpoint fully supports Azure's expected formats and operations to avoid compatibility issues.
Test and validate your SCIM implementation for both adding/updating and removing managers.