Operations with Specific Project
This resource provides access to projects.
Resource | /api/admin/projects/{projectID} |
Returned entity | Project. For the description of the entity attributes, see Supported Fields section. |
Supported methods |
|
Project attributes
Represents a YouTrack project.
Extends IssueFolder
This table describes attributes of the Project
entity.
To receive an attribute in the response from server, specify it explicitly in the request parameter
fields
.To update an attribute, provide it in the body of a POST request.
Field | Type | Description |
---|---|---|
startingNumber | Long | Starting number for issues in project. This property can be set only during creation of the new project. |
shortName | String | The ID of the project. This short name is also a prefix for an issue ID. |
description | String | The description of the project as shown on the project profile page. |
leader | User | The user who is set as the project lead. |
createdBy | User | The user who created the project. |
issues | Array of Issues | A list of all issues that belong to the project. |
customFields | The set of custom fields that are available in the project. | |
archived | Boolean | If the project is currently archived, this property is `true`. |
fromEmail | String | The email address that is used to send notifications for the project. If a 'From' address is not set for the project, the default 'From' address for the YouTrack server is returned. |
replyToEmail | String | The email address that is used as the reply email to send notifications for the project. If it is not set for the project, the default address for the YouTrack server is returned. |
template | Boolean | If |
iconUrl | String | The URL of the icon of the project. |
team | UserGroup | Read-only user group representing all members of the project team. |
name | String | The name of the issue folder. |
Read a Specific Project
Get the settings of the specific project.
Required permissions
Requires Read Project Basic OR Update Project permission.
Request syntax
{projectID} | ID of the project. To identify the project, you can use either its database entity ID or the short name. |
Request parameters
Parameter | Type | Description |
---|---|---|
fields | String | A list of Project attributes that should be returned in the response. If no field is specified,only the |
Sample
Sample request
Sample response body
Update a Specific Project
Update settings of a project with specific ID.
Required permissions
Requires Update Project permission.
Request syntax
{projectID} | ID of the project. To identify the project, you can use either its database entity ID or the short name. |
Request parameters
Parameter | Type | Description |
---|---|---|
fields | String | A list of Project attributes that should be returned in the response. If no field is specified,only the |
Sample
Sample request
Sample request body
Delete a Specific Project
Delete a project with specific ID.
Request syntax
{projectID} | ID of the project. To identify the project, you can use either its database entity ID or the short name. |
Request parameters
Parameter | Type | Description |
---|---|---|
fields | String | A list of Project attributes that should be returned in the response. If no field is specified,only the |
Sample
Identify the target project by its entity ID. For a successful request, server returns 200 OK code and an empty response payload.