Rest Versions » History » Revision 5
« Previous |
Revision 5/11
(diff)
| Next »
Stefan Wichmann, 2012-01-08 01:23
typo ...
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> <created_on>2008-03-09T12:52:06+01:00</created_on> <updated_on>2009-11-15T12:22:12+01:00</updated_on> </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> <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
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 Stefan Wichmann almost 13 years ago · 5 revisions