SOAP API - listUserSettingIds

The table summarizes the SOAP API - listUserSettingIds.

Request Uses the listUserSettingIdsRequest element (from the UserSettingsService schema)
Parameter notes storageKey: Identifies the key used to persist data on the server. Must be created using the storageKey attribute in the saveUserSettings operation.
Response Returns a listUserSettingsIdsResponse element (from the UserSettingsService schema)
Example Request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:user="http://usersettingsservice.api.de.n2.tibco.com">
   <soapenv:Header/>
   <soapenv:Body>
      <user:listUserSettingIdsRequest>
         <storageKey>configStore</storageKey>
      </user:listUserSettingIdsRequest>
   </soapenv:Body>
</soapenv:Envelope>
Response:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body>
      <listUserSettingIdsResponse xmlns="http://usersettingsservice.api.de.n2.tibco.com">
         <settingId xmlns="">viewSettings</settingId>
         <settingId xmlns="">workFlow</settingId>
      </listUserSettingIdsResponse>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>