GET api/Customer/LoadPersonUDFs

Loads a list of person UDFs, that can be set when updating or creating a person.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.

Response Formats

application/json, text/json

Sample:
[{"UDFID":1,"UDFDescription":"Car Ref","UDFValue":"","UDFDataType":"Text"},{"UDFID":2,"UDFDescription":"Alt Telephone No","UDFValue":"","UDFDataType":"Text"}]

application/xml, text/xml

Sample:
<?xml version="1.0" encoding="utf-16"?>
<CustomerUDFs xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <APICustomerUDF>
    <UDFID>1</UDFID>
    <UDFDescription>Car Ref</UDFDescription>
    <UDFValue />
    <UDFDataType>Text</UDFDataType>
  </APICustomerUDF>
  <APICustomerUDF>
    <UDFID>2</UDFID>
    <UDFDescription>Alt Telephone No</UDFDescription>
    <UDFValue />
    <UDFDataType>Text</UDFDataType>
  </APICustomerUDF>
</CustomerUDFs>