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...")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
IBM Connections allows to retrieve a feed that contains a specific user's profile.  
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 [https://www-10.lotus.com/ldd/appdevwiki.nsf/xpAPIViewer.xsp?lookupName=API+Reference#action=openDocument&res_title=Updating_profile_extension_data_ic50&content=apicontent&sa=true Profile Extension].
But in a particular customer, It has custom fields added to a profile, these fields are configured using [https://www.ibm.com/support/knowledgecenter/en/SSYGQH_6.0.0/admin/customize/r_admin_profiles_attributes_ext.html Profile Extension].


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>,..}'''   
Line 28: Line 28:
[[Category:API]]
[[Category:API]]
[[Category:REST]]
[[Category:REST]]
[[Category:curl]]

Latest revision as of 14:52, 21 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