v1

latestOpenAPI 3.1.02026-07-242735131.1 MB
Custom Fields

Create Custom Field Definition

Creates a new custom field definition.

Scopes

CategoryRead only ScopeWrite only Scope (read access implicit)
Manage employments (employments)View custom fields (custom_field:read)Manage custom fields (custom_field:write)
post/v1/custom-fields

Request body

OR
OR

Example request

{
  "data_entry_access": "company_admin_only",
  "name": "Internal ID",
  "required": false,
  "type": "string",
  "visibility_scope": "everyone"
}

Response

Success

Example response

{
  "data": {
    "custom_field": {
      "data_entry_access": "company_admin_only",
      "id": "01c0e4d2-f41b-11ed-9d3f-cb3ecccebb58",
      "metadata": {},
      "name": "Internal ID",
      "required": true,
      "type": "string",
      "visibility_scope": "everyone"
    }
  }
}