POST api/2.0/crm/{entityType}/{entityid}/customfield/{fieldid}
Sets the selected custom field to the entity with type and ID specified in the request.
Name |
Description |
Type |
Example |
entityType
sent in url
|
Entity type
Allowed values: contact, person, company, opportunity, case
|
string
|
some text
|
entityid
sent in url
|
Entity ID
|
number
|
1234
|
fieldid
sent in url
|
Field ID
|
number
|
1234
|
fieldValue
sent in body
|
Field value
|
string
|
some text
|
POST api/2.0/crm/some+text/1234/customfield/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"fieldValue": "some text"
}
application/json
{
"status": 0,
"response": {
"entityId": 14523423,
"label": "Birthdate",
"fieldValue": "2022-06-28T18:23:11.6218007Z",
"fieldType": 5,
"position": 10,
"mask": "",
"id": 0
}
}
text/xml
<result>
<status>0</status>
<response>
<entityId>14523423</entityId>
<label>Birthdate</label>
<fieldValue>2022-06-28T18:23:11.6218007Z</fieldValue>
<fieldType>5</fieldType>
<position>10</position>
<mask></mask>
<id>0</id>
</response>
</result>