v1
latestOpenAPI 3.1.1LicenseRef-Proprietary2026-07-1310179223.1 KBCustom Fields
Create Field in Project
Create a new custom field on a project.
post/projects/{project_id}/fields
Path parameters
project_idstring required
Example:ev:3000010034
Project ID
Request body
Example request
{
"name": "field name",
"type": "select",
"format": {
"decimals": 2,
"label": "US$"
},
"options": [
{
"id": 806,
"name": "option value",
"color": "#FC5500"
}
]
}Response
OK
Example response
{
"id": 406,
"name": "field name",
"type": "date",
"format": {
"decimals": 2,
"label": "US$"
},
"options": [
{
"id": 806,
"name": "option value",
"color": "#FC5500"
}
],
"position": 1
}