FORMAT: 1A # OpenProject API v3 # Group General This is the current **DRAFT** of the specification for OpenProject APIv3. Please note that everything in this document might be **subject to change** in a future version of OpenProject. We intend to keep this specification as accurate as possible, however as long as the APIv3 is not in a stable state it is possible that there are intermediary differences between this specification and the real implementation. While we try to only specify what we want to keep, it might also happen that parts of this specification will be replaced **incompatibly** until the APIv3 is considered *stable*. # Hypermedia TODO: Description & Resources # Formats TODO: Description and why only JSON # HAL+JSON HAL is a simple format that gives a consistent and easy way to hyperlink between resources in your API. Read more: http://stateless.co/hal_specification.html **OpenProject API implementation of HAL+JSON format** enriches JSON and introduces a few meta properties: - `_type` - specifies the type of the resource (e.g.: WorkPackage, Project) - `_links` - contains all links available for the resource - `_embedded` - contains all embedded objects - `_collection` - contains the collection of objects - `_count` - number of records fetched in the response - `_total` - number of available records # API response structure Depending on the performed request, the OpenProject API will return a response in one of the following possible structures: - As a **simple HAL+JSON object** (e.g.: GET /projects/:id) - As a **collection of HAL+JSON objects** (e.g.: GET /projects) - As a **collection of HTTP statuses and HAL+JSON objects** (e.g.: PATCH /projects?id[]=1&id[]=2) - As an **OpenProject API error object** ### Simple HAL+JSON object Contains its own data properties and some meta properties: { "id": 1, "name": "My awesome project", ... "_type": "Project", "_links": { "self": { "href": "/projects/1", "title": "My awesome project" }, "update": { "href": "/projects/1", "method": "patch", "title": "Update My awesome project" }, "delete": { "href": "/projects/1", "method": "delete", "title": "Delete My awesome project" } }, "_embedded": { ... } } ### Collection of HAL+JSON objects Contains collection of simple HAL+JSON objects in its `_collection` property. Also contains some collection specific meta data: { "_collection": [{ "id": 1, ... "_type": "Project" "_links": { "self": { "href": "/projects/1", "title": "My awesome project" }, "update": { "href": "/projects/1", "method": "patch", "title": "Update My awesome project" }, "delete": { "href": "/projects/1", "method": "delete", "title": "Delete My awesome project" } }, "_embedded": { ... } }, { "id": 2, ... "_type": "Project" "_links": { "self": { "href": "/projects/2", "title": "My awesome project" }, "update": { "href": "/projects/2", "method": "patch", "title": "Update My awesome project" }, "delete": { "href": "/projects/2", "method": "delete", "title": "Delete My awesome project" } }, "_embedded": { ... } }], "_type": "Project", "_links": { ... }, "_count": 2, "_total": 476 } ### Collection of HTTP statuses and HAL+JSON objects A response with this structure will be returned by endpoints performing **batch operations** (e.g.: update multiple projects). The main HTTP status code of the response will be `207 Multi-Status` and the response body will contain different response codes based on the results of each individual operation. For example if you perform a batch update request on multiple projects (`PATCH /projects`) it is possible that one project will be updated successfully while the update of the other project will fail: { "_collection": [{ "status": { "code": 200, "text": "Ok" }, "object": { "id": 1, "name": "My awesome project", ... "_type": "Project", "_links": { ... }, "_embedded": { ... } } }, { "status": { "code": 500, "text": "Internal Server Error" }, "error": { "opCode": 51, "messages": [{ "key": "serverError", "text": "Something went wrong. Please try again latter." }]}, "request": { requestParams } }], "_type": "Project", "_links": { ... } } This allows you to see exactly what went wrong and inform the user. ### Error object **TODO** # Authentication For now the API only supports **session-based authentication**. This means you have to login to OpenProject via the Web-Interface to be authenticated in the API. This method is well-suited for clients acting within the browser, like the Angular-Client built into OpenProject. However for the future we plan to add authentication modes that are more suitable for **external clients** too. # Allowed HTTP methods - `GET` - Get a single resource or collection of resources - `POST` - Create a new resource or perform - `PATCH` - Update a resource - `DELETE` - Delete a resource # Response codes - `200 OK` - Standard response for successful HTTP requests. The actual response will depend on the request method used. In a GET request, the response will contain an entity corresponding to the requested resource. - `201 Created` - The request has been fulfilled and resulted in a new resource being created - `202 Accepted` - The request has been accepted for processing, but the processing has not been completed. The request might or might not eventually be acted upon, as it might be disallowed when processing actually takes place. - `204 No content` - The server successfully processed the request, but is not returning any content. Usually used as a response to a successful delete request. Also returned for requests containing the If-Modified-Since header if the document is up-to-date. - `207 Multi-Status` - The message body that follows can contain a number of separate response codes, depending on how many sub-requests were made. - `301 Moved Permanently` - This and all future requests should be directed to the given - `303 See Other` - The response to the request can be found under another URI using a GET method. When received in response to a POST (or PUT/DELETE), it should be assumed that the server has received the data and the redirect should be issued with a separate GET message. - `400 Bad Request` - The request cannot be fulfilled due to bad syntax. - `401 Unauthorized` - Similar to 403 Forbidden, but specifically for use when authentication is required and has failed or has not yet been provided. - `403 Forbidden` - The request was a valid request, but the server is refusing to respond to it. Unlike a 401 Unauthorized response, authenticating will make no difference. - `404 Not Found` - The requested resource could not be found but may be available again in the future. Subsequent requests by the client are permissible. - `405 Method Not Allowed` - A request was made of a resource using a request method not supported by that resource - `406 Not Acceptable` - The requested resource is only capable of generating content not acceptable according to the Accept headers sent in the request. - `422 Unprocessable Entity` - The request was well-formed but was unable to be followed due to semantic errors. - `500 Internal Server Error` - A generic error message, given when an unexpected condition was encountered and no more specific message is suitable. - `501 Not Implemented` - The server either does not recognize the request method, or it lacks the ability to fulfill the request. Usually this implies future availability. - `503 Service Unavailable` - The server is currently unavailable (because it is overloaded or down for maintenance). # Group Activities ## Properties: | Property | Description | Type | Constraints | Example | Supported operations | |:---------:|-------------| ---- | ----------- | ------- | -------------------- | | id | Activity id | Integer | Must be a positive integer | 12 | READ | | version | Activity version | Integer | Must be a positive integer | 31 | READ | | comment | | String | | Lorem ipsum. | READ / WRITE | | details | | Array | | ["Priority changed from High to Low"] | READ | | htmlDetails | | Array | | ["Priority changed from High to Low"] | READ | | createdAt | | Timestamp | Returned in ISO 8601 format - YYYY-MM-DDTHH:MM:SSZ | | READ | Activity can be either _type Activity or _type Activity::Comment. ## Activity [/activities/{id}] + Model + Body { "_type": "Activity::Comment", "_links": { "self": { "href": "/api/v3/activity/1", "title": "Priority changed from High to Low" }, "workPackage": { "href": "/api/v3/work_packages/1", "title": "quis numquam qui voluptatum quia praesentium blanditiis nisi" }, "user": { "href": "/api/v3/users/1", "title": "John Sheppard - admin" } }, "id": 1, "details": [ "Lorem ipsum dolor sit amet." ], "htmlDetails": [ "Lorem ipsum dolor sit amet." ], "comment": "Lorem ipsum dolor sit amet.", "createdAt": "2014-05-21T08:51:20Z", "version": 31 } ## View activity [GET] + Parameters + id (required, integer, `1`) ... Activity id + Response 200 (application/hal+json) [Activity][] ## Update activity [PATCH] Updates an activity's comment and, on success, returns the updated activity. + Parameters + id (required, integer, `1`) ... Activity id + Request (application/json) { "comment": "The updated comment" } + Response 200 (application/hal+json) [Activity][] + Response 403 (application/hal+json) Returned if the client does not have sufficient permissions. **Required permission:** edit journals + Body TBD + Response 422 (application/hal+json) Returned if the client tries to modify a read-only property. + Body TBD # Group Attachments ## Properties: | Property | Description | Type | Constraints | Example | Supported operations | |:---------:|-------------| ---- | ----------- | ------- | -------------------- | | id | Attachment's id | Integer | Must be a positive integer | 12 | READ | | fileName | | String | | dolor_sit_amet | READ / WRITE | | diskFileName | | String | | dolor_sit_amet | READ / WRITE | | description | | String | | Lorem ipsum dolor ... | READ / WRITE | | contentType | | String | | application/binary | READ / WRITE | | digest | | String | | | READ / WRITE | | downloads | | Integer | | | READ | | createdAt | | Timestamp | Returned in ISO 8601 format - YYYY-MM-DDTHH:MM:SSZ | | READ | ## Attachment [/attachments/{id}] + Model + Body { "_type": "Attachment", "_links": { "self": { "href": "/api/v3/attachments/1", "title": "dolor_sit_amet" }, "workPackage" { "href": "/api/v3/work_packages/1", "title": "Lorem ipsum" }, "author": { "href": "/api/v3/users/1", "title": "John Sheppard - admin" } }, "id": 1, "fileName": "dolor_sit_amet", "diskFileName": "dolor_sit_amet", "description": "Lorem ipsum dolor sit amet consecetur elis.", "filesize": 24, "contentType": "application/binary", "digest": "", "downloads": 0, "createdAt": "2014-05-21T08:51:20Z" } ## View attachment [GET] + Parameters + id (required, integer, `1`) ... Attachment id + Response 200 (application/hal+json) [Attachment][] # Group Categories ## Properties | Property | Description | Type | Constraints | Example | Supported operations | |:--------:|-------------| ------- | ----------- | ------- | -------------------- | | id | Category id | Integer | Must be a positive integer | 12 | READ | | name | Category name | String | | Category Name | READ | ## Categories by Project [/projects/{project_id}/categories] + Model + Body { _links: { self: { href: "/api/v3/projects/11/categories" } }, _type: "Categories", _embedded: { categories: [ { _type: "Category", id: 10, name: "Foo" }, { _type: "Category", id: 11, name: "Bar" } ] } } ## List categories of a project [GET] + Parameters + project_id (required, integer, `1`) ... ID of the project whoose categories will be listed + Response 200 (application/hal+json) [Categories by Project][] # Group Priorities ## Properties | Property | Description | Type | Constraints | Example | Supported operations | |:--------:|-------------| ------- | ----------- | ------- | -------------------- | | id | Priority id | Integer | Must be a positive integer | 12 | READ | | name | Priority name | String | | High | READ | ## Priorities [/priorities] + Model + Body { _links: { self: { href: "/api/v3/priorities" } }, _type: "Priorities", _embedded: { priorities: [ { _type: "Priority", id: 1, name: "Low" }, { _type: "Priority", id: 2, name: "Normal" }, { _type: "Priority", id: 3, name: "High" }, { _type: "Priority", id: 4, name: "Urgent" }, { _type: "Priority", id: 5, name: "Immediate" } ] } } ## List all Priorities [GET] + Response 200 (application/hal+json) [Priorities][] # Group Projects ## Links: | Link | Description | Type | Constraints | Supported operations | |:------:|-------------| ---- | ----------- | -------------------- | | self | This project | Project | not null | READ | | categories | Categories available in this project | Categories | not null | READ | | versions | Versions available in this project | Versions | not null | READ | ## Properties: | Property | Description | Type | Constraints | Example | Supported operations | |:---------:|-------------| ---- | ----------- | ------- | -------------------- | | id | Projects's id | Integer | Must be a positive integer | 12 | READ | | identifier | | String | | project_identifier | READ / WRITE | | name | | String | | Project example | READ / WRITE | | description | | String | | Lorem ipsum dolor sit amet | READ / WRITE | | homepage | | String | | http://openproject.com | READ / WRITE | | createdOn | | Timestamp | 2014-05-21T08:51:20Z | | READ | | updatedOn | | Timestamp | 2014-05-21T08:51:20Z | | READ | ## Project [/projects/{id}] + Model + Body { "_type": "Project", "_links": { "self": { "href": "/api/v3/projects/1", "title": "Lorem" }, "workPackages": [{ "href": "/api/v3/work_packages/1", "title": "Lorem ipsum" }] }, "id": 1, "identifier": "project_identifier", "name": "Project example", "description": "Lorem ipsum dolor sit amet", "homepage": "http://openproject.com", "createdOn": "2014-05-21T08:51:20Z", "updatedOn": "2014-05-21T08:51:20Z" } ## View project [GET] + Parameters + id (required, integer, `1`) ... Project id + Response 200 (application/hal+json) [Project][] # Group Queries ## Properties: | Property | Description | Type | Constraints | Example | Supported operations | |:---------:|-------------| ---- | ----------- | ------- | -------------------- | | id | Query id | Integer | Must be a positive integer | 12 | READ | | name | Query name | String | | My work packages query | READ / WRITE | | filters | | String | | | READ / WRITE | | isPublic | | Boolean | | true | READ / WRITE | | columnNames | | String | | | READ / WRITE | | sortCriteria | | String | | | READ / WRITE | | groupBy | | String | | | READ / WRITE | | displaySums | | Boolean | | true | READ / WRITE | | isStarred | | Boolean | | true | READ | ## Query [/queries/{id}] + Model + Body { "_type": "Query", "_links": { "self": { "href": "/api/v3/queries/2", "title": "My work packages" }, "project": { "href": "/api/v3/projects/1", "title": "Lorem ipsum" }, "user": { "href": "/api/v3/users/1", "title": "John Sheppard - admin" } }, "id": 2, "name": "My work packages", "filters": [ { "status_id": { "operator": "o", "values": null } }, { "assigned_to_id": { "operator": "=", "values": [ "me" ] } } ], "isPublic": "false", "columnNames": [ "type", "status", "priority", "subject", "assigned_to" ], "sortCriteria": [ [ "parent", "desc" ] ], "groupBy": null, "displaySums": "false", "isStarred": true } ## View query [GET] **NOT IMPLEMENTED** + Parameters + id (required, integer, `1`) ... Query id + Response 200 (application/hal+json) [Query][] ## Star Query [/queries/{id}/star] + Model + Body { "_type": "Query", "_links": { "self": { "href": "/api/v3/queries/2", "title": "My work packages" }, "project": { "href": "/api/v3/projects/1", "title": "Lorem ipsum" }, "user": { "href": "/api/v3/users/1", "title": "John Sheppard - admin" } }, "id": 2, "name": "My work packages", "filters": [ { "status_id": { "operator": "o", "values": null } }, { "assigned_to_id": { "operator": "=", "values": [ "me" ] } } ], "isPublic": "false", "columnNames": [ "type", "status", "priority", "subject", "assigned_to" ], "sortCriteria": [ [ "parent", "desc" ] ], "groupBy": null, "displaySums": "false", "isStarred": true } ## Star query [PATCH] + Parameters + id (required, integer, `1`) ... Query id + Response 200 (application/hal+json) [Star Query][] ## Unstar Query [/queries/{id}/unstar] + Model + Body { "_type": "Query", "_links": { "self": { "href": "/api/v3/queries/2", "title": "My work packages" }, "project": { "href": "/api/v3/projects/1", "title": "Lorem ipsum" }, "user": { "href": "/api/v3/users/1", "title": "John Sheppard - admin" } }, "id": 2, "name": "My work packages", "filters": [ { "status_id": { "operator": "o", "values": null } }, { "assigned_to_id": { "operator": "=", "values": [ "me" ] } } ], "isPublic": "false", "columnNames": [ "type", "status", "priority", "subject", "assigned_to" ], "sortCriteria": [ [ "parent", "desc" ] ], "groupBy": null, "displaySums": "false", "isStarred": "false" } ## Unstar query [PATCH] + Parameters + id (required, integer, `1`) ... Query id + Response 200 (application/hal+json) [Unstar Query][] # Group Statuses ## Properties | Property | Description | Type | Constraints | Example | Supported operations | |:--------:|-------------| ------- | ----------- | ------- | -------------------- | | id | Status id | Integer | Must be a positive integer | 12 | READ | | name | Status name | String | | Closed | READ | ## Statuses [/statuses] + Model + Body { _links: { self: { href: "/api/v3/statuses" } }, _type: "Statuses", _embedded: { statuses: [ { _type: "Status", id: 1, name: "New" }, { _type: "Status", id: 3, name: "Resolved" }, { _type: "Status", id: 4, name: "Feedback" }, { _type: "Status", id: 5, name: "Closed" }, { _type: "Status", id: 6, name: "Rejected" }, { _type: "Status", id: 2, name: "In Progress" } ] } } ## List all Statuses [GET] + Response 200 (application/hal+json) [Statuses][] # Group Users ## Properties: | Property | Description | Type | Constraints | Example | Supported operations | |:---------:|-------------| ---- | ----------- | ------- | -------------------- | | id | User's id | Integer | Must be a positive integer | 12 | READ | | login | User's login name | String | | j.sheppard | READ / WRITE | | firstName | User's first name | String | | John | READ / WRITE | | lastName | User's last name | String | | Sheppard | READ / WRITE | | name | User's full name, formatting depends on instance settings | String | | Sheppard, John | READ | | mail | User's email | String | | shep@mail.com | READ / WRITE | | avatar | URL to user's avatar | String | | https://gravatar/avatar | READ | | createdAt | | Timestamp | Returned in ISO 8601 format - YYYY-MM-DDTHH:MM:SSZ | | READ | | updatedAt | | Timestamp | Returned in ISO 8601 format - YYYY-MM-DDTHH:MM:SSZ | | READ | ## User [/users/{id}] + Model + Body { "_type": "User", "_links": { "self": { "href": "/api/v3/users/1", "title": "John Sheppard - j.sheppard" } }, "id": 1, "login": "j.sheppard", "firstName": "John", "lastName": "Sheppard", "mail": "shep@mail.com", "avatar": "https://gravatar/avatar", "createdAt": "2014-05-21T08:51:20Z", "updatedAt": "2014-05-21T08:51:20Z" } ## View user [GET] + Parameters + id (required, integer, `1`) ... User id + Response 200 (application/hal+json) [User][] # Group Versions ## Properties | Property | Description | Type | Constraints | Example | Supported operations | |:--------:|-------------| ------- | ----------- | ------- | -------------------- | | id | Version id | Integer | Must be a positive integer | 12 | READ | | name | Version name | String | | Version 1.0 | READ | ## Versions by Project [/projects/{project_id}/versions] + Model + Body { _links: { self: { href: "/api/v3/projects/11/versions" } }, _type: "Versions", _embedded: { versions: [ { _type: "Version", id: 11, name: "v3.0 Alpha" }, { _type: "Version", id: 12, name: "v2.0" }, { _type: "Version", id: 10, name: "v1.0" } ] } } ## List versions available in a project [GET] + Parameters + project_id (required, integer, `1`) ... ID of the project whoose versions will be listed + Response 200 (application/hal+json) [Versions by Project][] # Group Work packages ## Links: | Link | Description | Type | Constraints | Supported operations | |:------:|-------------| ---- | ----------- | -------------------- | | self | This work package | WorkPackage | not null | READ | | author | The person that created the work package | User | not null | READ | | changeParent | Endpoint to change the parent (only if the user has the manage_subtasks permission) | | | READ | ## Properties: | Property | Description | Type | Constraints | Example | Supported operations | |:---------:|-------------| ---- | ----------- | ------- | -------------------- | | id | Work package id | Integer | Must be a positive integer | 12 | READ | | subject | Work package subject | String | **REQUIRED** Must be a string of 255 or less characters | Refactor projecs module | READ | | type | | String | **REQUIRED** Must be one of the types enabled for the current work package's project | Feature | READ | | description | Work package description | String | | Projects module should be refactored ... | READ | | rawDescription | | String | | | READ | | parentId | Parent work package id | Integer | Must be an id of an existing and visible (in respect to the API user) work package | 42 | READ / WRITE | | status | | String | **REQUIRED** ... | New | READ | | priority | | String | Must be one of the activated priorities | High | READ | | startDate | | Date | Must be a date in format YYYY-MM-DD and must be equal or greater than the soonest possible start date | 2014-05-21T08:51:20Z | READ | | dueDate | | Date | Must be a date in format YYYY-MM-DD and must be greater then start date | | READ | | estimatedTime | | Object | Must be in form of a json object with "units" and "value" as keys and value must be an integer or a decimal | { "units": "hours", "value": 12 } | READ | | percentageDone | | Integer | Must be an integer between 0 and 100 | 50 | READ | | createdAt | | Timestamp | Returned in ISO 8601 format - YYYY-MM-DDTHH:MM:SSZ | | READ | | updatedAt | | Timestamp | Returned in ISO 8601 format - YYYY-MM-DDTHH:MM:SSZ | | READ | ## WorkPackage [/work_packages/{id}] + Model + Body { "_type": "WorkPackage", "_links": { "self": { "href": "/api/v3/work_packages/1528", "title": "Develop API" }, "update": { "href": "/api/v3/work_packages/1528", "method": "patch", "title": "Update Develop API" }, "delete": { "href": "/work_packages/bulk?ids=1528", "method": "delete", "title": "Delete Develop API" }, "log_time": { "href": "/work_packages/1528/time_entries/new", "type": "text/html", "title": "Log time on Develop API" }, "duplicate": { "href": "/projects/seeded_project/work_packages/new?copy_from=1528", "type": "text/html", "title": "Duplicate Develop API" }, "move": { "href": "/work_packages/1528/move/new", "type": "text/html", "title": "Move Develop API" }, "author": { "href": "/api/v3/users/1", "title": "OpenProject Admin - admin" }, "responsible": { "href": "/api/v3/users/23", "title": "Laron Leuschke - Alaina5788" }, "assignee": { "href": "/api/v3/users/11", "title": "Emmie Okuneva - Adele5450" }, "availableStatuses": { "href": "/api/v3/work_packages/1528/available_statuses", "title": "Available Statuses" }, "availableWatchers": { "href": "/api/v3/work_packages/1528/available_watchers", "title": "Available Watchers" }, "watch": { "href": "/api/v3/work_packages/1528/watchers", "method": "post", "data": { "user_id": 1 }, "title": "Watch work package" }, "addWatcher": { "href": "/api/v3/work_packages/1528/watchers{?user_id}", "method": "post", "title": "Add watcher", "templated": true }, "addRelation": { "href": "/api/v3/work_packages/1528/relations", "method": "post", "title": "Add relation" }, "changeParent": { "href": "/api/v3/work_packages/694", "method": "patch", "title": "Change parent of Bug in OpenProject" }, "addComment": { "href": "/api/v3/work_packages/1528/activities", "method": "post", "title": "Add comment" }, "parent": { "href": "/api/v3/work_packages/1298", "title": "nisi eligendi officiis eos delectus quis voluptas dolores" }, "children": [ { "href": "/api/v3/work_packages/1529", "title": "Write API documentation" } ] }, "id": 1528, "subject": "Develop API", "type": "Feature", "description": "
Develop super cool OpenProject API.
", "rawDescription": "Develop super cool OpenProject API.", "status": "New", "isClosed": false, "priority": "Normal", "startDate": null, "dueDate": null, "estimatedTime": { "units": "hours", "value": null }, "percentageDone": 0, "versionId": 2, "versionName": "1.0", "projectId": 1, "projectName": "Seeded Project", "parentId": 1298, "createdAt": "2014-08-29T12:40:53Z", "updatedAt": "2014-08-29T12:44:41Z", "customProperties": [ { "name": "velit molestiae", "format": "text", "value": "dolor sit amet" }, { "name": "et quam", "format": "text", "value": "" }, { "name": "quo deserunt", "format": "text", "value": "" } ], "_embedded": { "author": { "_type": "User", "_links": { "self": { "href": "/api/v3/users/1", "title": "OpenProject Admin - admin" } }, "id": 1, "login": "admin", "firstName": "OpenProject", "lastName": "Admin", "name": "OpenProject Admin", "mail": "admin@example.net", "avatar": "http://gravatar.com/avatar/cb4f282fed12016bd18a879c1f27ff97?secure=false", "createdAt": "2014-05-23T12:25:03Z", "updatedAt": "2014-08-29T06:37:03Z", "status": 1 }, "responsible": { "_type": "User", "_links": { "self": { "href": "/api/v3/users/23", "title": "Laron Leuschke - Alaina5788" } }, "id": 23, "login": "Alaina5788", "firstName": "Laron", "lastName": "Leuschke", "name": "Laron Leuschke", "mail": "camilla@marquardtkeeling.net", "avatar": "http://gravatar.com/avatar/0157adaf28fb535e890179cf070f4be0?secure=false", "createdAt": "2014-05-23T12:27:41Z", "updatedAt": "2014-05-23T12:27:41Z", "status": 1 }, "assignee": { "_type": "User", "_links": { "self": { "href": "/api/v3/users/11", "title": "Emmie Okuneva - Adele5450" } }, "id": 11, "login": "Adele5450", "firstName": "Emmie", "lastName": "Okuneva", "name": "Emmie Okuneva", "mail": "ottilie@yundt.net", "avatar": "http://gravatar.com/avatar/67fa59130a4077555ea953bb434c2f7e?secure=false", "createdAt": "2014-05-23T12:26:09Z", "updatedAt": "2014-05-23T12:26:09Z", "status": 1 }, "activities": [ { "_type": "Activity", "_links": { "self": { "href": "/api/v3/activities/5970", "title": "5970" }, "workPackage": { "href": "/api/v3/work_packages/1528", "title": "Develop API" }, "user": { "href": "/api/v3/users/1", "title": "OpenProject Admin - admin" }, "update": { "href": "/api/v3/activities/5970", "method": "patch", "title": "5970" } }, "id": 5970, "comment": "", "rawComment": "", "details": [ "Type set to Feature", "Project set to Seeded Project", "Subject set to Develop API", "Description set (/journals/5970/diff/description)", "Due date set to 08/30/2014", "Category set to API", "Status set to New", "Assignee set to Emmie Okuneva", "Priority set to Normal", "Version set to 1.0", "Author set to OpenProject Admin", "% done changed from 0 to 20", "Estimated time set to 3.00", "Start date set to 08/29/2014", "Parent set to nisi eligendi officiis eos delectus quis voluptas dolores", "Responsible set to Laron Leuschke", "velit molestiae set to dolor sit amet" ], "htmlDetails": [ "Type set to Feature", "Project set to Seeded Project", "Subject set to Develop API", "Description set (Details)", "Due date set to 08/30/2014", "Category set to API", "Status set to New", "Assignee set to Emmie Okuneva", "Priority set to Normal", "Version set to 1.0", "Author set to OpenProject Admin", "% done changed from 0 to 20", "Estimated time set to 3.00", "Start date set to 08/29/2014", "Parent set to nisi eligendi officiis eos delectus quis voluptas dolores", "Responsible set to Laron Leuschke", "velit molestiae set to dolor sit amet" ], "version": 1, "createdAt": "2014-08-29T12:40:53Z" }, { "_type": "Activity::Comment", "_links": { "self": { "href": "/api/v3/activities/5972", "title": "5972" }, "workPackage": { "href": "/api/v3/work_packages/1528", "title": "Develop API" }, "user": { "href": "/api/v3/users/1", "title": "OpenProject Admin - admin" }, "update": { "href": "/api/v3/activities/5972", "method": "patch", "title": "5972" } }, "id": 5972, "comment": "Updated automatically by changing values within child work package #1529
", "rawComment": "_Updated automatically by changing values within child work package #1529_\n", "details": [ "Due date deleted (08/30/2014)", "% done changed from 20 to 0", "Estimated time deleted (3.00)", "Start date deleted (08/29/2014)" ], "htmlDetails": [ "Due date deleted (