Projects - Problems API

List all problems of a project

List all problems of a project with a specific ID.

GET /projects/:id/problems

Response

Status: 200 OK
[
  {
    "created_at": "2016-03-13T10:27:00-06:00",
    "analysis_target_at": "2016-03-20T03:00:00-06:00",
    "sourceID": null,
    "updated_at": "2016-03-14T03:14:13-06:00",
    "service": {
      "name": "Expense Reporting",
      "id": 14,
      "provider": {
        "name": "Widget Data Center, External IT",
        "id": 30
      }
    },
    "member": {
      "name": "Tom Waters",
      "id": 36
    },
    "solved_at": null,
    "subject": "Clicking on the Submit button does not submit new expense report",
    "id": 221,
    "impact": "top",
    "team": {
      "name": "Application Development",
      "id": 7
    },
    "status": "in_progress"
  },
  "..."
]

The response contains these fields by default.

Predefined Filters

The following predefined filters are available:

Add a problem to a project

Add a link between a project with a specific ID and a problem with a specific ID.

POST /projects/:id/problems/:problem_id

Response

Status: 200 OK
{}

Remove a problem from a project

Remove the link between a project with a specific ID and a problem with a specific ID.

DELETE /projects/:id/problems/:problem_id

Response

Status: 204 No Content

Remove all problems from a project

Remove all links between a project with a specific ID and its problems.

DELETE /projects/:id/problems

Response

Status: 204 No Content