API: Lists
Get a single list
Path
GET
https://account.bugrocket.com/api/v1/projects/project_slug/lists/list_slug
Returns info about a list in a project.
Response
- X-RateLimit-Limit:
- 500
- X-RateLimit-Remaining:
- 499
- X-RateLimit-Wait:
- 0
- Content-Type:
- application/json; charset=utf-8
- Content-Length:
- 123
{
"name": "1.0",
"slug": "1.0",
"project": "twiyyer", # project_slug
"position": N, # integer
"tickets_count": 15, # integer
"tickets_open": 10 # integer
}
Get all lists
Path
GET
https://account.bugrocket.com/api/v1/projects/project_slug/lists
Returns info about all lists in a project.
Response
- X-RateLimit-Limit:
- 500
- X-RateLimit-Remaining:
- 499
- X-RateLimit-Wait:
- 0
- Content-Type:
- application/json; charset=utf-8
- Content-Length:
- 123
[
{ list_hash },
...
]