ICDS Rest API JSON Body Help
Summary
update attributes in "Other Information" i.e. Organisation NameContent
I am wanting to make use of the Rest API: /admin/v1/Users/{{userid}} to update individual attributes for a user in IDCS.
I have this working nicely for Home Phone Number using the following JSON body:
{ "schemas": [ "urn:ietf:params:scim:api:messages:2.0:PatchOp" ], "Operations": [ { "op": "replace", "path": "phoneNumbers", "value": [ { "value": "07999 555444", "type": "home" } ] } ] }
What I am struggling with is how do I update the attributes that sit under the "Other Information" section like Organization name.
I believe the path to these is:
urn:ietf:params:scim:schemas:extension:enterprise:2.0:User
2