name, type, index, description and help; omitting description or help as a non-empty string returns a 400 error naming the specific field. type must belong to the closed set of 27 values accepted by the API; an invalid or missing type returns 400 listing every accepted value. Fields of type select or checkList must send options as a plain list of strings.index and name of each field must be unique within the array sent in this call.curl --location '/v1/client-config//fields' \
--header 'Content-Type: application/json' \
--data '{
"fields": [
{
"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"
}
]