GET api/v2/Users/{id}/UDF
Gets the persons User Defined Values
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of UDFLabelValueViewModelName | Description | Type | Additional information |
---|---|---|---|
UDFId |
Represents the UDF Id received from the GetAvailableUDFs |
globally unique identifier |
None. |
UDFLabelName |
Represents the Label text of a User Defined Field |
string |
None. |
UDFValue |
Represents the Value of the User Defined Field |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "UDFId": "d4d17890-7143-4927-a009-a7f8977c0da4", "UDFLabelName": "sample string 2", "UDFValue": "sample string 3" }, { "UDFId": "d4d17890-7143-4927-a009-a7f8977c0da4", "UDFLabelName": "sample string 2", "UDFValue": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfUDFLabelValueViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers"> <UDFLabelValueViewModel> <UDFId>d4d17890-7143-4927-a009-a7f8977c0da4</UDFId> <UDFLabelName>sample string 2</UDFLabelName> <UDFValue>sample string 3</UDFValue> </UDFLabelValueViewModel> <UDFLabelValueViewModel> <UDFId>d4d17890-7143-4927-a009-a7f8977c0da4</UDFId> <UDFLabelName>sample string 2</UDFLabelName> <UDFValue>sample string 3</UDFValue> </UDFLabelValueViewModel> </ArrayOfUDFLabelValueViewModel>