PUT forms/{id}/customfields
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id | No documentation available. |
Define this parameter in the request URI. |
| list | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"CustomFields": [
{
"Name": "sample string 1",
"Value": "sample string 2",
"PopUpOnTablet": true
},
{
"Name": "sample string 1",
"Value": "sample string 2",
"PopUpOnTablet": true
},
{
"Name": "sample string 1",
"Value": "sample string 2",
"PopUpOnTablet": true
}
]
}
application/xml, text/xml
Sample:
<CustomFieldListRest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<CustomFields>
<CustomFieldRest>
<Name>sample string 1</Name>
<Value>sample string 2</Value>
<PopUpOnTablet>true</PopUpOnTablet>
</CustomFieldRest>
<CustomFieldRest>
<Name>sample string 1</Name>
<Value>sample string 2</Value>
<PopUpOnTablet>true</PopUpOnTablet>
</CustomFieldRest>
<CustomFieldRest>
<Name>sample string 1</Name>
<Value>sample string 2</Value>
<PopUpOnTablet>true</PopUpOnTablet>
</CustomFieldRest>
</CustomFields>
</CustomFieldListRest>
