PUT api/CustomField
Save Custom Field Value. Processes this custom field API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
None.
Body Parameters
The save custom field value command save data contract supplied with the request.
SaveCustomFieldValueCommandSaveDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomFieldId |
The unique identifier of the related custom field resource. |
integer |
None. |
| Value |
The value represented by this field. |
Object |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"CustomFieldId": 1,
"Value": {},
"Id": 3
}
Response Information
Resource Description
The response returned after the operation completes.
CustomFieldValueDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Type |
The type value. |
EnumDataContract |
None. |
| Name |
The name value. |
string |
None. |
| Value |
The value represented by this field. |
Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Type": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"Name": "sample string 1",
"Value": {}
}