GET api/v2/Users/{id}/UDF

Gets the persons User Defined Values

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of UDFLabelValueViewModel
NameDescriptionTypeAdditional 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": "edd0ba73-ff5d-4b50-a1ca-b1fcae26091b",
    "UDFLabelName": "sample string 2",
    "UDFValue": "sample string 3"
  },
  {
    "UDFId": "edd0ba73-ff5d-4b50-a1ca-b1fcae26091b",
    "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>edd0ba73-ff5d-4b50-a1ca-b1fcae26091b</UDFId>
    <UDFLabelName>sample string 2</UDFLabelName>
    <UDFValue>sample string 3</UDFValue>
  </UDFLabelValueViewModel>
  <UDFLabelValueViewModel>
    <UDFId>edd0ba73-ff5d-4b50-a1ca-b1fcae26091b</UDFId>
    <UDFLabelName>sample string 2</UDFLabelName>
    <UDFValue>sample string 3</UDFValue>
  </UDFLabelValueViewModel>
</ArrayOfUDFLabelValueViewModel>