-
-
Notifications
You must be signed in to change notification settings - Fork 124
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
When I send POST request with body:
{
"UserName": "UserName123",
"Active": true,
"DisplayName": "BobIsAmazing",
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User"
],
"externalId": "${__UUID}",
"name": {
"formatted": "Ryan Leenay",
"familyName": "Leenay",
"givenName": "Ryan"
},
"emails": [
{
"Primary": true,
"type": "work",
"value": "testing@bob.com"
},
{
"Primary": false,
"type": "home",
"value": "testinghome@bob.com"
}
]
}I get an error:
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"status": "400",
"scimType": "invalidValue",
"detail": "required attributes urn:ietf:params:scim:schemas:core:2.0:User:userName are missing"
}If change UserName to userName, it returns a similar error about the next attribute.
I see that according to RFC 7643 "attribute names are case insensitive":

Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working