POST api/2.0/crm/{entityType}/{entityid}/customfield/{fieldid}
Sets the new user field value using the entity type, ID, field ID and value specified in the request
Name |
Description |
Type |
Example |
entityType
sent in url
|
Type
|
string
|
some text
|
entityid
sent in url
|
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": "2021-01-21T09:11:56.3432891Z",
"fieldType": 5,
"position": 10,
"mask": "",
"id": 0
}
}
text/xml
<result>
<status>0</status>
<response>
<entityId>14523423</entityId>
<label>Birthdate</label>
<fieldValue>2021-01-21T09:11:56.3432891Z</fieldValue>
<fieldType>5</fieldType>
<position>10</position>
<mask></mask>
<id>0</id>
</response>
</result>