fields_create_project_field
Create custom fields for projects by specifying a name, field type, and optional options for enum or set fields. Returns a field_code for future updates or deletions.
Instructions
Create a new custom field for projects (API v2).
For enum and set field types you must provide options (a non-empty array of
{ label } objects). The created field's field_code is what you use to update or
delete it later.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Display name of the field | |
| options | No | Required for `enum` and `set` field types | |
| field_type | Yes | Type of the field. `enum`/`set` require `options`. |