API: Projects
Get a single project
Path
GET
https://account.bugrocket.com/api/v1/projects/project_slug
Returns info about a project in your account.
Response
- X-RateLimit-Limit:
- 500
- X-RateLimit-Remaining:
- 499
- X-RateLimit-Wait:
- 0
- Content-Type:
- application/json; charset=utf-8
- Content-Length:
- 123
{
"name": "Twiyyer",
"slug": "twiyyer",
"acl": [ # array of user_ids or null
"4ebd2bb30e7d8a4ace000004",
"4ebd2a820e7d8a4ace000002",
"4f04c1550e7d8a9db7000007",
"4f04c14b0e7d8a9db7000005"
],
"tickets_count": 100, # integer
"lists": [
"1.0",
"2.0"
]
}
Get all projects
Path
GET
https://account.bugrocket.com/api/v1/projects
Returns info about all projects in your account.
Response
- X-RateLimit-Limit:
- 500
- X-RateLimit-Remaining:
- 499
- X-RateLimit-Wait:
- 0
- Content-Type:
- application/json; charset=utf-8
- Content-Length:
- 123
[
{ project_hash },
...
]