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 UDFViewModel| Name | 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": "4464f825-f581-455d-a3e9-3d06e793e4ce",
"UDFLabel": "sample string 2",
"FieldType": "sample string 3"
},
{
"UDFId": "4464f825-f581-455d-a3e9-3d06e793e4ce",
"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>4464f825-f581-455d-a3e9-3d06e793e4ce</UDFId>
<UDFLabel>sample string 2</UDFLabel>
</UDFViewModel>
<UDFViewModel>
<FieldType>sample string 3</FieldType>
<UDFId>4464f825-f581-455d-a3e9-3d06e793e4ce</UDFId>
<UDFLabel>sample string 2</UDFLabel>
</UDFViewModel>
</ArrayOfUDFViewModel>