GET API/CustomField/GetAll/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CustomField| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomFieldId |
The unique id for the |
integer |
None. |
| ListId |
The unique id of the the custom field is applied to |
integer |
None. |
| ItemId |
The unique id of the the custom field belongs to |
integer |
None. |
| Title |
The user friendly title (heading) for the custom field |
string |
None. |
| Value |
The value applied to the custom field for the |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"customFieldId": 1,
"listId": 2,
"itemId": 3,
"title": "sample string 4",
"value": "sample string 5"
},
{
"customFieldId": 1,
"listId": 2,
"itemId": 3,
"title": "sample string 4",
"value": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfCustomField xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TScunts.Models.API.List">
<CustomField>
<CustomFieldId>1</CustomFieldId>
<ItemId>3</ItemId>
<ListId>2</ListId>
<Title>sample string 4</Title>
<Value>sample string 5</Value>
</CustomField>
<CustomField>
<CustomFieldId>1</CustomFieldId>
<ItemId>3</ItemId>
<ListId>2</ListId>
<Title>sample string 4</Title>
<Value>sample string 5</Value>
</CustomField>
</ArrayOfCustomField>