# Custom Field API

## Custom Field Properties

### Name
- **Type:** string
- **Description:** The name of the custom field

### Description
- **Type:** string
- **Description:** The description of the custom field

### Type
- **Type:** string (enum)
- **Allowed Values:** `single-select`, `multi-select`, `plain-text`, `date`

### Values
- **Type:** array of strings
- **Description:** The values of the custom field

## Example Request

```bash
curl --request POST \
     --url https://api.air.inc/v1/customfields \
     --header 'accept: application/json' \
     --header 'content-type: application/json'
```

## Response

- **Status Code:** 200
- **Message:** Custom field created successfully
