GET api/v2/ACSystems/{id}/UDFs

Gets a list of User defined View Models in a system

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of UDFViewModel
NameDescriptionTypeAdditional information
UDFId

Represents the PK of a UDF

globally unique identifier

None.

UDFLabel

Represents the Label text of a User Defined Field

string

None.

FieldType

Represents the Type of the field

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "UDFId": "6c5b674d-390b-4c88-88c7-5031485e74b8",
    "UDFLabel": "sample string 2",
    "FieldType": "sample string 3"
  },
  {
    "UDFId": "6c5b674d-390b-4c88-88c7-5031485e74b8",
    "UDFLabel": "sample string 2",
    "FieldType": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfUDFViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
  <UDFViewModel>
    <FieldType>sample string 3</FieldType>
    <UDFId>6c5b674d-390b-4c88-88c7-5031485e74b8</UDFId>
    <UDFLabel>sample string 2</UDFLabel>
  </UDFViewModel>
  <UDFViewModel>
    <FieldType>sample string 3</FieldType>
    <UDFId>6c5b674d-390b-4c88-88c7-5031485e74b8</UDFId>
    <UDFLabel>sample string 2</UDFLabel>
  </UDFViewModel>
</ArrayOfUDFViewModel>