name, type, index, description and help. Since this is a complete replacement, the required attributes from the original record must be resent; omitting description or help, for example, returns a 400 error.section is provided with a section identifier, the field becomes part of that section: the field's individual ordering index is then disregarded by the API (the server automatically sets it to null), and the field's position within the section follows the association order, not a configurable numeric value. To remove a field from its section, send section as null — the individual ordering index is then restored.category attribute (default for fixed registration fields or conditional for fields displayed only according to a rule) can be freely changed by this operation.curl --location --request PUT '/v1/client-config//fields/' \
--header 'Content-Type: application/json' \
--data '{
"name": "string",
"type": "shortText",
"index": 0,
"required": true,
"editable": true,
"category": "default",
"description": "string",
"help": "string",
"options": [
"string"
],
"variant": 0,
"section": {
"id": "string",
"index": 0
}
}'{
"id": "string",
"name": "string",
"type": "shortText",
"index": 0,
"required": true,
"editable": true,
"category": "default",
"description": "string",
"help": "string",
"options": [
"string"
],
"variant": 0,
"section": {
"id": "string",
"index": 0
},
"slug": "string",
"uiComponent": "string"
}