POST api/customfield/values/save
Saving a list of custom fields to an entity 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 contracts value supplied with the request.
Collection of 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
},
{
"CustomFieldId": 1,
"Value": {},
"Id": 3
}
]
Response Information
Resource Description
The response returned after the operation completes.
Collection of 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": {}
},
{
"Type": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"Name": "sample string 1",
"Value": {}
}
]