Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Department Administrators and users with a custom role can get profile fields of the users belonging to the departments they manage and their sub-departments.

Parameters


ParameterTypeDescription
token (required)stringAccess token. You can obtain a token by making a request.


Return Value

After the request has been completed, the system returns an object with the following properties.

ParameterTypeDescription
userFieldInfo[]arrayAn array of objects with the following properties: userFieldInfoId, name, label, type, isUnique, isVisible, isRequired,orderPriority.


Sample Call


Code Block
languagexml
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="https://schemas.xmlsoap.org/soap/envelope/"
                   xmlns:ns1="https://new.webservice.namespace">
  <SOAP-ENV:Body>
    <GetUserProfileFieldsRequest>
       <credentials>
         <token>p-1sJDjmULL5DdpXPJTcbm4jVIaWVHvNmrjAxATRbNE</token>
       </credentials>
    </GetUserProfileFieldsRequest>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

...