Fetch report - leerbedrijflisa/breakpoint-api GitHub Wiki
GET /reports/id
Response
Data fields
Field |
Description |
id |
A unique identifier for the bug report. |
title |
A title that succinctly describes the bug that was reported. |
project |
The name of the project that the bug report is part of. |
description |
A detailed explanation of the problem. |
assignee |
The name of the person the bug report is assigned to. |
status |
The status of the project. |
reported |
The date and time (in UTC) the bug report was submitted. |
comments |
A comment that users may use to give more information. |
Example
HTTP/1.1 200 OK
Content-Type: application/json
{
"id": "0ebb65f3-8c72-442f-99e2-28de57b52bc5",
"title": "Title of report",
"project": "Name of project",
"description": "Description of the report",
"assignee": " ",
"status": "open",
"reported": "2016-04-26T09:12:09.0795933Z",
"comments": [
{
"id": "0ea72462-2a86-4e62-a7c3-8c03ad798966",
"username": "Name of user",
"comment": "Text for comment",
"datetime": "2016-05-11T13:34:16Z",
"deleted": true,
"deletionDate": "2016-05-19T11:11:22.2472567Z"
},
{
"id": "4bc0b69d-7400-48bf-8693-cb1c7288bcba",
"username": "Name of user",
"comment": "Text for comment",
"datetime": "2016-05-19T11:51:58Z",
"deleted": false,
"deletionDate": ""
}
]
}