Developer Resources

API / (GET) Show Issues

This API call returns a list of issues for either a change, change's tester or release.

API URL
https://youraccount.beetil.com/external_api/v1/changes/:change_id/issues.format
HTTP Method
GET

or
API URL
https://youraccount.beetil.com/external_api/v1/changes/:change_id/testers/:t_id/issues/:id.format
HTTP Method
GET

or
API URL
https://youraccount.beetil.com/external_api/v1/releases/:release_id/issues.format
HTTP Method
GET




URL parameters

ParameterFormatDefaultMandatory
change_idThe change's reference number.integerYes
t_idThe change tester's id.integerYes
release_idThe release's reference number.integerYes




Points of Interest
  • Issues come with their own set of notes. See Show Note and Create Note for more information.
  • Change Issues can have notes of type: comment and issue_comment
    Example uri: /external_api/v1/changes/123/issues/23/comments/87
    Example uri: /external_api/v1/changes/123/issues/23/issue_comments/87
  • Change Tester Issues can have notes of type: comment and issue_comment
    Example uri: /external_api/v1/changes/123/testers/354/issues/23/comments/87
    Example uri: /external_api/v1/changes/123/testers/354/issues/23/issue_comments/87
  • Release Issues can have notes of type: comment and issue_comment
    Example uri: /external_api/v1/releases/123/issues/23/comments/87
    Example uri: /external_api/v1/releases/123/issues/23/issue_comments/87




Example JSON Response
{
  "result": {
    "issues": [
      {
        "title": "Testing Uploads on BeetilTest",
        "id": 18,
        "issue_link": "/external_api/v1/changes/981/tests/5/issues/18"
      }
    ]
  },
  "version": "1.0",
  "status": "Success"
}




Last updated 31 January 2011