Field Configuration
Update Field Configuration Item
Partially updates a field-configuration item (PATCH semantics). Items belonging to a field configuration in another organization return 404.
patch/field-configurations/{id}/items/{itemId}
Path parameters
idstring required
UUID of the field configuration.
itemIdstring required
UUID of the field-configuration item.
Request body
Example request
{
"title": "Budget Range (revised)",
"contents": "What budget range has the customer confirmed?"
}Response
Item successfully updated.
Example response
{
"data": {
"uuid": "b9e1c0a0-5a3d-4a9c-9b1e-2d6f4b7a1c11__item-01",
"fieldConfigurationUUID": "b9e1c0a0-5a3d-4a9c-9b1e-2d6f4b7a1c11",
"title": "Budget Range",
"category": "CRM",
"contents": "What is the customer's stated budget range?",
"promptType": "freeform",
"contentType": "text"
}
}