GET api/v1/ACSystems/{id}/UDFs
Gets a list of User defined View Models in a system
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of UDFViewModelName | Description | Type | Additional 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": "60af0dde-88fd-4b0c-ac05-29b6e5b62a26", "UDFLabel": "sample string 2", "FieldType": "sample string 3" }, { "UDFId": "60af0dde-88fd-4b0c-ac05-29b6e5b62a26", "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>60af0dde-88fd-4b0c-ac05-29b6e5b62a26</UDFId> <UDFLabel>sample string 2</UDFLabel> </UDFViewModel> <UDFViewModel> <FieldType>sample string 3</FieldType> <UDFId>60af0dde-88fd-4b0c-ac05-29b6e5b62a26</UDFId> <UDFLabel>sample string 2</UDFLabel> </UDFViewModel> </ArrayOfUDFViewModel>