Rest Versions » History » Revision 9
« Previous |
Revision 9/11
(diff)
| Next »
Go MAEDA, 2019-04-28 16:44
Added wiki_page_title that is going to be supported in Redmine 4.1.0
Versions¶
- Table of contents
- Versions
/projects/:project_id/versions.:format¶
GET¶
Returns the versions available for the project of given id or identifier (:project_id). The response may include shared versions from other projects.
Examples:
GET /projects/foo/versions.xml GET /projects/1/versions.xml
Response:
<?xml version="1.0" encoding="UTF-8"?>
<versions type="array" total_count="34">
<version>
<id>1</id>
<project name="Redmine" id="1"/>
<name>0.7</name>
<description/>
<status>closed</status>
<due_date>2008-04-28</due_date>
<sharing>none</sharing>
<created_on>2008-03-09T12:52:06+01:00</created_on>
<updated_on>2009-11-15T12:22:12+01:00</updated_on>
<wiki_page_title>FooBarWikiPage</version_wiki_page_title>
</version>
<version>
<id>2</id>
<project name="Redmine" id="1"/>
<name>0.8</name>
<description/>
<status>closed</status>
<due_date>2008-12-30</due_date>
<sharing>none</sharing>
<wiki_page_title>FooBarWikiPage</version_wiki_page_title>
<created_on>2008-03-09T12:52:12+01:00</created_on>
<updated_on>2009-11-15T12:22:12+01:00</updated_on>
</version>
</versions>
POST¶
Creates a version for the project of given id or identifier (:project_id).
Parameters:
version
(required): a hash of the version attributes, including:name
(required)status
: the status of the version in:open (default), locked, closed
sharing
: the version sharing in:none (default), descendants, hierarchy, tree, system
due_date
description
wiki_page_title
Response:
201 Created
: version was created422 Unprocessable Entity
: version was not created due to validation failures (response body contains the error messages)
/versions/:id.:format¶
GET¶
Returns the version of given id.
Example:
GET /versions/2.xml
Response:
<?xml version="1.0" encoding="UTF-8"?>
<version>
<id>2</id>
<project name="Redmine" id="1"/>
<name>0.8</name>
<description/>
<status>closed</status>
<due_date>2008-12-30</due_date>
<created_on>2008-03-09T12:52:12+01:00</created_on>
<updated_on>2009-11-15T12:22:12+01:00</updated_on>
</version>
PUT¶
Updates the version of given id
Parameters:
Same as version creation
Response:
200 OK
: version was updated422 Unprocessable Entity
: version was not updated due to validation failures (response body contains the error messages)
DELETE¶
Deletes the version of given id.
Response:
200 OK
: version was deleted422 Unprocessable Entity
: version was not deleted (response body contains the error messages)
Updated by Go MAEDA over 5 years ago · 9 revisions