Contents

Update Project

Updates information about project.

Role

Administrator
Project Administrator

Method

PATCH

URL

/api/v2/projects/:projectIdOrKey

URL parameters

Parameter NameTypeDescription
projectIdOrKeyStringProject ID or Project Key

Form parameters

Content-Type:application/x-www-form-urlencoded
Parameter NameTypeDescription
nameStringProject Name
keyStringProject Key
chartEnabledBooleanEnable chart
useResolvedForChartBooleanConsider Resolved and statuses after as Closed
subtaskingEnabledBooleanEnable subtasking
projectLeaderCanEditProjectLeaderBooleanAllow project administrators to manage each other
useWikiBooleanEnable Wiki
useFileSharingBooleanEnable shared files
useWikiTreeViewBooleanEnable Wiki tree view
useSubversionBooleanEnable Subversion
useGitBooleanEnable Git
useOriginalImageSizeAtWikiBooleanDisplay images in Wikis in their original size
textFormattingRuleStringFormatting rules “backlog” or “markdown”
archivedBooleanArchive this project
useDevAttributesBooleanEnable priorities, versions and milestones

Response example

Status Line / Response Header

HTTP/1.1 200 OK
Content-Type:application/json;charset=utf-8

Response Body

{
    "id": 1,
    "projectKey": "TEST",
    "name": "test",
    "chartEnabled": false,
    "useResolvedForChart": false,
    "subtaskingEnabled": false,
    "projectLeaderCanEditProjectLeader": false,
    "useWiki": true,
    "useFileSharing": true,
    "useWikiTreeView": true,
    "useOriginalImageSizeAtWiki": false,
    "useSubversion": true,
    "textFormattingRule": "markdown",
    "archived":false,
    "displayOrder": 2147483646,
    "useDevAttributes": true
}