...
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
| Parameter | Type | Description |
|---|---|---|
| token (required) | string | Access 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.
| Parameter | Type | Description |
|---|---|---|
| userFieldInfo[] | array | An array of objects with the following properties: userFieldInfoId, name, label, type, isUnique, isVisible, isRequired,orderPriority. |
Sample Call
| Code Block | ||
|---|---|---|
| ||
<?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> |
...