# Values in the Owned Bundle

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

## OwnedBundleElement attributes

Represents a single owned value of a set. For example, a subsystem.

### Related Resources

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

* [Values in the Owned Bundle]()

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

### Attributes

This table describes attributes of the `OwnedBundleElement` 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 owned value. `Read-only`.  |
|  owner  |  [User](api-entity-User.html)  |  The user who is associated with the 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 OwnedBundleElements

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

### Request syntax

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

|  null  |  The database ID of OwnedBundleElement  |
| --- | --- |

### Request parameters

|  Parameter  |  Type  |  Description  |
| --- | --- | --- |
|  fields  |  String  |  A list of OwnedBundleElement 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/ownedField/83-0/values?fields=id,name,owner(id,login,fullName)
```

#### Sample response body

```JSON
[
  {
    "owner": {
      "fullName": "John Smith",
      "login": "john.smith",
      "id": "24-2",
      "$type": "User"
    },
    "name": "Testing",
    "id": "148-6",
    "$type": "OwnedBundleElement"
  },
  {
    "owner": {
      "fullName": "Jane Doe",
      "login": "jane.doe",
      "id": "24-0",
      "$type": "User"
    },
    "name": "Documentation",
    "id": "148-7",
    "$type": "OwnedBundleElement"
  },
  {
    "owner": {
      "fullName": "John Smith",
      "login": "john.smith",
      "id": "24-2",
      "$type": "User"
    },
    "name": "Development",
    "id": "148-18",
    "$type": "OwnedBundleElement"
  }
]
```

## Add a New OwnedBundleElement

Add a new owned 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/ownedField/{bundleID}/values?{fields}
```

|  null  |  The database ID of OwnedBundleElement  |
| --- | --- |

### Request parameters

|  Parameter  |  Type  |  Description  |
| --- | --- | --- |
|  fields  |  String  |  A list of OwnedBundleElement 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/ownedField/83-0/values?fields=id,name,owner(id,login,fullName)
```

#### Sample request body

```JSON
{
  "owner": {
    "login": "john.smith",
    "id": "24-2"
  },
  "name": "Release"
}
```

#### Sample response body

```JSON
{
  "owner": {
    "fullName": "John Smith",
    "login": "john.smith",
    "id": "24-2",
    "$type": "User"
  },
  "name": "Release",
  "id": "148-36",
  "$type": "OwnedBundleElement"
}
```

