GET api/CustomField
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CustomField| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomFieldId | integer |
None. |
|
| FieldLabel | string |
None. |
Response Formats
application/json, text/json, text/html
Sample:
[
{
"CustomFieldId": 1,
"FieldLabel": "sample string 2"
},
{
"CustomFieldId": 1,
"FieldLabel": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfCustomField xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NiceAPI.Managers">
<CustomField>
<CustomFieldId>1</CustomFieldId>
<FieldLabel>sample string 2</FieldLabel>
</CustomField>
<CustomField>
<CustomFieldId>1</CustomFieldId>
<FieldLabel>sample string 2</FieldLabel>
</CustomField>
</ArrayOfCustomField>