Hello all,

I have a user in mu user store with following attributes.

    {
      "id": "bfae138c-9f57-4ff1-ab63-599f2034371f",
      "schemas":[
        "urn:scim:schemas:core:1.0"
      ],
      "name":{
        "formatted": "Ms. Barbara J Jensen III",
        "familyName": "Jensen",
        "givenName": "Barbara"
      },
      "userName": "bjensen123",
      "externalId": "bjensen",
      "meta":{
        "lastModified": "2015-05-25T08:59:28",
        "location": "
https://localhost:9443/wso2/scim/Users/bfae138c-9f57-4ff1-ab63-599f2034371f
",
        "created": "2015-05-25T08:59:28"
      }
    }

I'm sending a put request to this resource with following method body.

    {
      "schemas":["urn:scim:schemas:core:1.0"],
      "userName":"bjensen123",
      "name":{
        "formatted":"Ms. Bb",
      }
    }

What should be the name attribute of my resulting resource?

    "name":{
       "formatted":"Ms. Bb",
    }

or

    "name":{
         "formatted": "Ms. Bb",
        "familyName": "Jensen",
        "givenName": "Barbara"
      }

Thank You!

-- 
*Chamila Dilshan Wijayarathna,*
Software Engineer
Mobile:(+94)788193620
WSO2 Inc., http://wso2.com/
_______________________________________________
Dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/dev

Reply via email to