Update a custom field definition

patch/custom-field-definitions/{customFieldDefinitionId}
SecuritybearerAuth
Request
path Parameters
customFieldDefinitionId
required
integer <int64> (IdParam) >= 1

Custom field definition identifier

Example: 1
Request Body schema: application/json-patch+json

A set of JSONPatch operations to be performed

Array
op
required
string

The JSON Patch operation to be performed

Enum: "add" "remove" "replace" "move" "copy" "test"
path
required
string

A JSON-Pointer

value
object

The value to be used within the operations

from
string

A string containing a JSON Pointer value

Responses
200

Custom field definition updated successfully

400

Invalid input

404

Custom field definition not found

Request samples
application/json-patch+json
[
  • {
    • "op": "replace"
    }
]
Response samples
application/json
{
  • "id": 1,
  • "label": "Additional field definition label",
  • "entityLevel": "USAGE_PRODUCT"
}