Create user field
|
POST api/2.0/crm/{entityType}/customfield
|
Creates a new user field with the parameters (entity type, field title, type, etc.) specified in the request
|
Delete user field
|
DELETE api/2.0/crm/{entityType}/customfield/{fieldid}
|
Deletes the user field with the ID specified in the request
|
Get user field list
|
GET api/2.0/crm/{entityType}/customfield/definitions
|
Returns the list of descriptions for all existing user fields
|
Get user field values
|
GET api/2.0/crm/{entityType}/{entityid}/customfield
|
Returns the list of all user field values using the entity type and entity ID specified in the request
|
Set user field value
|
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
|
Update custom fields order
|
PUT api/2.0/crm/{entityType}/customfield/reorder
|
Updates user fields order
|
Updates the selected user field
|
PUT api/2.0/crm/{entityType}/customfield/{id}
|
Updates the selected user field with the parameters (entity type, field title, type, etc.) specified in the request
|