Custom Property
Update a Custom Property
Updates a given custom property. Any parameters not provided are left unchanged. The property type cannot be changed after creation. For list properties, the options array must be sent in full to replace all options.
patch/custom_properties/{customPropertyId}
Path parameters
customPropertyIdstring uuid required
The unique identifier for a resource.
Example:9a93d3b5-fb3b-4abf-9e70-26315b33506c
Custom Property Id
Request body
Example request
{
"name": "Contract Type",
"options": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"value": "Sales Quote"
}
],
"workspaces": [
"9a93d3b5-fb3b-4abf-9e70-26315b33506c"
]
}Response
OK
Example response
{
"id": "0ef334d2-7f36-4643-8a2a-4283b4a3e4a4",
"name": "Department",
"type": "text",
"value": "Marketing"
}