Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SCIM 2.0 REST API doc contains incompatible sub attribute names for 'name' #1931

Open
Abilashini opened this issue Aug 4, 2020 · 0 comments

Comments

@Abilashini
Copy link
Contributor

Description:
SCIM 2.0 REST API doc[1] contains the name attribute in the requests and responses as,

  "name": {
    "firstName": "Kim",
    "lastName": "Berry"
  }

But firstName and lastName are not supported by default. So the sample requests doesn't work as expected. According to the spec, givenName and familyName should be used instead and those has been mapped with the local claims of first name and last name. So in all the places the name attribute need be changed as,

  "name": {
    "givenName": "Kim",
    "familyName": "Berry"
  }

[1] https://is.docs.wso2.com/en/latest/develop/scim2-rest-apis/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants