Reputation: 80
In our IBM Connections system I can access Profile Details in the user interface. The browser sends a GET request that looks like
/profiles/html/profileDetails.do?key=22d38016-399e-49ec-b3f6-6707d7a49799§ion=contactInformation
Is there an API call that delivers the same information like organizational unit, country, city, telephone, ...?
Upvotes: 1
Views: 465
Reputation: 56
You can use
/profiles/json/profile.do?userid=44766D83-BAA2-501C-C125-7E62002578C3
/profiles/json/[email protected]
or
/profiles/atom/profile.do?userid=44766D83-BAA2-501C-C125-7E62002578C3
In my experience the atom feed misses sometimes data, but json shows everything of a user.
Upvotes: 2