List
Description: Provides a paginated list of all test run configuration groups
Endpoint: <base_url>/projects/{project_id}/run_configuration_groups.json
Request: GET
Formats supported: JSON
Params:
- page - {Integer} of the page (Default: 1)
Response
{
"pagination": { .... },
"run_configuration_groups": [
{ .... },
{ .... }
]
}Example ruby request
HTTParty.get('https://api.testlodge.com/v1/account/1/projects/1/run_configuration_groups.json', query: { page: 1 })Example Response
Response code: 200
{
"pagination": {
"total_entries":30,
"total_pages":2,
"current_page":1,
"next_page":2,
"previous_page":null,
"per_page":20
},
"run_configuration_groups":[{
"id":1,
"title":"Browsers",
"created_at":"2020-01-26T14:33:58Z",
"updated_at":"2024-02-26T14:33:58Z",
"run_configuration_options":[{
"id":154,
"title":"Chrome",
"created_at":"2020-02-25T09:30:39.000Z",
"updated_at":"2024-04-17T07:39:46.000Z"
},
{ .... }]
},
{ .... }]
}