We already figured it out that the role being sent is the role from the application not the role from the user.
SCIM - Correct role value not being sent in request
Hello,
We have an application configured to hit our SCIM API and have a user with a custom role assigned: "Administrator". However, when provisioning the user, only a role with the value "User" is received. We were expecting to receive "Administrator".
{
"schemas":[
"urn:ietf:params:scim:schemas:core:2.0:User",
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User"
],
"userName":"email@onmicrosoft.com",
"active":true,
"meta":{
"resourceType":"User"
},
"name":{
"familyName":"33",
"givenName":"Scim"
},
"urn:ietf:params:scim:schemas:extension:CustomExtensionName:2.0:User.appRoles":{
"value":"User"
}
}
Following is our configuration. Any help is appreciated, thanks.