User Custom Fields

These are fields that can be defined using the back office of Zaui, providing an easy mechanism to create and define your own custom user fields within the system. The format of these fields in XML is

When GETTING user profiles, the user custom field data will be sent back in the following format:

<userCustomFields>
	<customField>
		<customFieldId></customFieldId>
		<customFieldRequired></customFieldRequired>
		<customFieldLabel></customFieldLabel>
		<customFieldValue></customFieldValue>
	</customField>
</userCustomFields>

When UPDATING user profiles, the user custom data is expected in the following format:

<userCustomFields>
	<customField>
		<customFieldId></customFieldId>
		<customFieldValue></customFieldValue>
	</customField>
	<customField>
		<customFieldId></customFieldId>
		<customFieldValue></customFieldValue>
	</customField>
	<customField>
		<customFieldId></customFieldId>
		<customFieldValue></customFieldValue>
	</customField>
</userCustomFields>

Last updated