IBM Connections: Retrieving multiple extension fields from Profiles: Difference between revisions

From Wiki
(Criou a página com "IBM Connections allows to retrieve a feed that contains a specific user's profile. But in a particular customer, It has custom fields added to a profile, these fields are...")
 
No edit summary
Line 5: Line 5:
In documentation [https://www-10.lotus.com/ldd/appdevwiki.nsf/xpAPIViewer.xsp?lookupName=API+Reference#action=openDocument&res_title=Retrieving_profile_extension_data_ic50&content=apicontent Retrieving profile extension data], you can retrive on extension each time.
In documentation [https://www-10.lotus.com/ldd/appdevwiki.nsf/xpAPIViewer.xsp?lookupName=API+Reference#action=openDocument&res_title=Retrieving_profile_extension_data_ic50&content=apicontent Retrieving profile extension data], you can retrive on extension each time.


Follow show how to retrieve multiple extensions:
Below shows how to retrieve multiple extensions:


  /profiles/atom/profileExtension.do?key=<PROF_KEY>&extensionId='''{<extension1>,<extension2>,<extension3>,..}'''   
  /profiles/atom/profileExtension.do?key=<PROF_KEY>&extensionId='''{<extension1>,<extension2>,<extension3>,..}'''   

Revision as of 15:07, 19 February 2018

IBM Connections allows to retrieve a feed that contains a specific user's profile.

But in a particular customer, It has custom fields added to a profile, these fields are configured using Profile Extension.

In documentation Retrieving profile extension data, you can retrive on extension each time.

Below shows how to retrieve multiple extensions:

/profiles/atom/profileExtension.do?key=<PROF_KEY>&extensionId={<extension1>,<extension2>,<extension3>,..}  

Example

curl -X GET -k https://<CONNECTIONS_SERVER/profiles/atom/profileExtension.do?key=<PROF_KEY>&extensionId={nickName,techExperience,workAniversary}
...
joe
...
ITIL, COBIT, ...
...
Sep/10/98

See alson