Custom Property
Create a Custom Property
Creates a new custom property for the organization. The property type (text or list) cannot be changed after creation.
post/custom_properties
Request body
Example request
{
"name": "Document Type",
"type": "list",
"default_value": "REF-001",
"options": [
{
"value": "Quote"
}
],
"workspaces": [
"9a93d3b5-fb3b-4abf-9e70-26315b33506c"
]
}Response
Created
Example response
{
"id": "0ef334d2-7f36-4643-8a2a-4283b4a3e4a4",
"name": "Department",
"type": "text",
"value": "Marketing"
}