Update Custom Field

Request

PATCH /customFields/{CustomFieldId}

Query Parameters

Name
Type
Required
Comments

CustomFieldId

integer

yes

Id of custom field you want to update

Request Body

Body of request should contain Custom field model serialized to JSON.

{
    "assignedCategoryIds": [],
    "defaultValue": "Everything fine",
    "id": 26707,
    "isHidden": false,
    "isRequired": false,
    "isSensitiveData": false,
    "name": "Client Comment",
    "placeholder": "Client Comment",
    "possibleValues": null,
    "type": "text_input"
}

Response

Data field has type of Custom Field object.

Last updated

Was this helpful?