# Values in the Enum Bundle

This resource lets you work with the values in a specific set of enumerated values (enum bundle).
|  Resource  |     ```GENERIC /api/admin/customFieldSettings/bundles/enum/{bundleID}/values ```    |
| --- | --- |
|  Returned entity  |  [EnumBundleElement](api-entity-EnumBundleElement.html). For the description of the entity attributes, see [Supported Fields](#EnumBundleElement-supported-fields) section.  |
|  Supported methods  |      * `GET`: [Values in the Enum Bundle](#get_all-EnumBundleElement-method).    * `POST`: [Values in the Enum Bundle](#create-EnumBundleElement-method).    |

## EnumBundleElement attributes

Represents an enumeration value in YouTrack.

### Related Resources

Below you can find the list of resources that let you work with this entity.

* [Values in the Enum Bundle]()

Extends [LocalizableBundleElement](api-entity-LocalizableBundleElement.html)

### Attributes

This table describes attributes of the `EnumBundleElement` entity.

* To receive an attribute in the response from the server, specify it explicitly in the `fields` request parameter.

* To update an attribute, provide it in the body of a POST request.

|  Field  |  Type  |  Description  |
| --- | --- | --- |
|  id  |  String  |  The ID of the enumeration value. `Read-only`.  |
|  localizedName  |  String  |  The localized name of the field value. `Can be null`.  |
|  name  |  String  |  The name of the value.  |
|  bundle  |  [Bundle](api-entity-Bundle.html)  |  The reference to the bundle that contains this value. `Read-only`. `Can be null`.  |
|  description  |  String  |  The description of the value. `Can be null`.  |
|  archived  |  Boolean  |  When `true`, this value is archived.  |
|  ordinal  |  Int  |  The position of the value in the set of values for the custom field.  |
|  color  |  [FieldStyle](api-entity-FieldStyle.html)  |  The color that is assigned to the value in the custom field.  |
|  hasRunningJob  |  Boolean  |  If true, there are some jobs running in the background for this bundle element. Otherwise, false. `Read-only`.  |

## Read a List of EnumBundleElements

Get the list of all enumerated values in the specific bundle.

### Request syntax

```GENERIC
GET /api/admin/customFieldSettings/bundles/enum/{bundleID}/values?{fields}&{$top}&{$skip}
```

|  null  |  The database ID of EnumBundleElement  |
| --- | --- |

### Request parameters

|  Parameter  |  Type  |  Description  |
| --- | --- | --- |
|  fields  |  String  |  A list of EnumBundleElement attributes that should be returned in the response. If no field is specified, only the `entityID` is returned.  |
|  $skip  |  Int  |  Optional. Lets you set a number of returned entities to skip before returning the first one.  |
|  $top  |  Int  |     Optional. Lets you specify the maximum number of entries that are returned in the response. If you don't set the $top value, the server limits the maximum number of returned entries.       The server returns a maximum of 42 entries for most resources that return collections. For more information, see [Pagination](api-concept-pagination.html).     |

### Sample

#### Sample request

```CURL
https://example.youtrack.cloud/api/admin/customFieldSettings/bundles/enum/54-1/values?fields=id,name
```

#### Sample response body

```JSON
[
  {
    "name": "Bug",
    "id": "55-5",
    "$type": "EnumBundleElement"
  },
  {
    "name": "Exception",
    "id": "55-7",
    "$type": "EnumBundleElement"
  },
  {
    "name": "Feature",
    "id": "55-8",
    "$type": "EnumBundleElement"
  },
  {
    "name": "Task",
    "id": "55-9",
    "$type": "EnumBundleElement"
  },
  {
    "name": "Usability Problem",
    "id": "55-10",
    "$type": "EnumBundleElement"
  },
  {
    "name": "Epic",
    "id": "55-12",
    "$type": "EnumBundleElement"
  },
  {
    "name": "Story",
    "id": "55-308",
    "$type": "EnumBundleElement"
  },
  {
    "name": "Incident",
    "id": "55-317",
    "$type": "EnumBundleElement"
  }
]
```

## Add a New EnumBundleElement

Add a new enumerated value to the bundle.

Required fields: `name`.

### Required permissions

Requires Update Project permission in all projects where the bundle is used. If the bundle is not used in any field, Update Project permission is required in at least one project.

### Request syntax

```GENERIC
POST /api/admin/customFieldSettings/bundles/enum/{bundleID}/values?{fields}
```

|  null  |  The database ID of EnumBundleElement  |
| --- | --- |

### Request parameters

|  Parameter  |  Type  |  Description  |
| --- | --- | --- |
|  fields  |  String  |  A list of EnumBundleElement attributes that should be returned in the response. If no field is specified, only the `entityID` is returned.  |

### Sample

#### Sample request

```CURL
https://example.youtrack.cloud/api/admin/customFieldSettings/bundles/enum/54-1/values?fields=id,name
```

#### Sample request body

```JSON
{
  "name": "User Story"
}
```

#### Sample response body

```JSON
{
  "name": "User Story",
  "id": "55-318",
  "$type": "EnumBundleElement"
}
```

