v1

latestOpenAPI 3.1.1LicenseRef-Proprietary2026-07-1310179223.1 KB
Custom 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

namestring required
type'number' | 'text' | 'select' | 'date' required
iconstring

Example request

{
  "name": "field name",
  "type": "select",
  "format": {
    "decimals": 2,
    "label": "US$"
  },
  "options": [
    {
      "id": 806,
      "name": "option value",
      "color": "#FC5500"
    }
  ]
}

Response

OK

idnumber

Custom field ID

namestring
typestring
positionnumber
iconstring

Field icon name

Example response

{
  "id": 406,
  "name": "field name",
  "type": "date",
  "format": {
    "decimals": 2,
    "label": "US$"
  },
  "options": [
    {
      "id": 806,
      "name": "option value",
      "color": "#FC5500"
    }
  ],
  "position": 1
}