Operations with Specific StateBundle
This resource provides operations with sets of values of the state
type.
Resource |
|
---|---|
Returned entity | StateBundle. For the description of the entity attributes, see Supported Fields section. |
Supported methods |
|
Represents a set of states in YouTrack.
Below you can find the list of resources that let you work with this entity.
Extends BaseBundle
This table describes attributes of the StateBundle
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 set of states. |
values | The list of states that this set of values contains. | |
isUpdateable | Boolean | If |
Read the list of states in a set with the specific ID.
Requires read or update access to one of the fields that use the bundle. If the bundle is not used in any field, Update Project permission is required in at least one project.
GET /api/admin/customFieldSettings/bundles/state/{bundleID}?{fields}
{bundleID} | Database ID of the set of values. |
---|
Parameter | Type | Description |
---|---|---|
fields | String | A list of StateBundle attributes that should be returned in the response. If no field is specified, only the |
https://example.youtrack.cloud/api/admin/customFieldSettings/bundles/state/68-3?fields=name,id,values(name,id,ordinal,isResolved),isUpdateable
{
"values": [
{
"isResolved": false,
"ordinal": 0,
"name": "Open",
"id": "69-22",
"$type": "StateBundleElement"
},
{
"isResolved": false,
"ordinal": 1,
"name": "In Progress",
"id": "69-23",
"$type": "StateBundleElement"
},
{
"isResolved": false,
"ordinal": 2,
"name": "To Verify",
"id": "69-24",
"$type": "StateBundleElement"
},
{
"isResolved": true,
"ordinal": 3,
"name": "Done",
"id": "69-25",
"$type": "StateBundleElement"
},
{
"isResolved": true,
"ordinal": 4,
"name": "Duplicate",
"id": "69-26",
"$type": "StateBundleElement"
}
],
"name": "AnotherScrum project from RESTState004a258b-bdd7-4d4b-b7b6-f5d633c49d3b",
"isUpdateable": true,
"id": "68-3",
"$type": "StateBundle"
}
Change the list of states in a set with the specific ID.
Requires Project Update 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.
POST /api/admin/customFieldSettings/bundles/state/{bundleID}?{fields}
{bundleID} | Database ID of the set of values. |
---|
Parameter | Type | Description |
---|---|---|
fields | String | A list of StateBundle attributes that should be returned in the response. If no field is specified, only the |
https://example.youtrack.cloud/api/admin/customFieldSettings/bundles/state/68-3?fields=name,id,values(name,id,ordinal,isResolved),isUpdateable
{
"name": "States for Another Scrum Project",
"values": [
{
"isResolved": true,
"name": "Won't fix"
}
]
}
{
"values": [
{
"isResolved": true,
"ordinal": 0,
"name": "Won't fix",
"id": "69-63",
"$type": "StateBundleElement"
}
],
"name": "States for Another Scrum Project",
"isUpdateable": true,
"id": "68-3",
"$type": "StateBundle"
}
Delete the set of values with the specific ID.
Requires Project Update 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.
DELETE /api/admin/customFieldSettings/bundles/state/{bundleID}
{bundleID} | Database ID of the set of values. |
---|
Parameter | Type | Description |
---|---|---|
fields | String | A list of StateBundle attributes that should be returned in the response. If no field is specified, only the |
https://example.youtrack.cloud/api/admin/customFieldSettings/bundles/state/68-9