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": "7b10fcc1-06af-4948-933a-56bb62effa86",
    "UDFLabel": "sample string 2",
    "FieldType": "sample string 3"
  },
  {
    "UDFId": "7b10fcc1-06af-4948-933a-56bb62effa86",
    "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>7b10fcc1-06af-4948-933a-56bb62effa86</UDFId>
    <UDFLabel>sample string 2</UDFLabel>
  </UDFViewModel>
  <UDFViewModel>
    <FieldType>sample string 3</FieldType>
    <UDFId>7b10fcc1-06af-4948-933a-56bb62effa86</UDFId>
    <UDFLabel>sample string 2</UDFLabel>
  </UDFViewModel>
</ArrayOfUDFViewModel>