---
title: "Create custom field option"
method: POST
path: "/users/v1/custom-fields/{customFieldId}/options"
tags: ["Users:v1:Custom Fields:Custom Field options"]
---

# Create custom field option

`POST /users/v1/custom-fields/{customFieldId}/options`

Add new option for a specified custom field.The option will be added to the existing ones and will not overwrite them.Currently supports dropdown custom fields options.

## Path parameters

- `customFieldId` integer, required — The unique identifier of the custom field

## Request body

- CreateDropdownCustomFieldOption
  - `value` string, required — The value to be added as the option
  - `isDisabled` boolean — Indicates if this option is disabled

## Response `200`

Successful Response

- APIResponseDropdownCustomFieldOptionResponse
  - `requestId` string
  - `data` DropdownCustomFieldOptionResponse, required
    - `id` integer, required — The id of this option
    - `value` string, required — The name of this option
    - `isDisabled` boolean — Indicates if this option is disabled
    - `isDeleted` boolean — Indicates if this option is deleted (this will still be returned in case someone already chose this option so you can see the value).

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/connecteam/apis/connecteam-api-documentation.md) · [All operations](https://skmtc.net/connecteam/apis/connecteam-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/connecteam/connecteam-api-documentation/revisions/d8f7f302222e/schema)
