Testery REST API Resources
A description of the available Testery REST API end points.
Test Run Details
Get Single Test Run
GET
https://api.testery.io/test-runs/:id
Returns a single test run by id.
Path Parameters
Name | Type | Description |
---|---|---|
id | string | ID of the cake to get, for free of course. |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Set to "Bearer <yourApiToken>". See [[Finding Your API Token]]. |
List of Test Runs
Get List of Test Runs
GET
https://api.testery.io/test-runs?offset=##&limit=##
Returns the list of test runs. Be sure to specify an offset and limit as these are required parameters.
Query Parameters
Name | Type | Description |
---|---|---|
offset* | int | The starting index for which test run to return. This index starts with 0 and should increment by the limit for each page. |
limit* | int | The number of test runs to return in each call. |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Set to "Bearer <yourApiToken>". See [[Finding Your API Token]]. |
Last updated