logo AWS Technology Partner

API: Searching for Load Tests

API Endpoint
https://www.redline13.com/Api/LoadTest

This API allows you to search for your tests and returns the following data for found results.

load_test_id
The load test id.
load_test_name
Name of load test.
load_test_desc
Description provided with test.
load_test_comments
Comment field supplied with load test.
created_time
Time load test was created.
start_time
When the test was launched (after agents created).
completed_time
Time test was completed, blank if test was cancelled.
cancelled_time
Time test was mark cancelled, completed will be blank.
cancellation_message
If test was cancelled message would be provided.
avg_resp_time
Generic average response time for all requests.
success_rate
The success rate determined for overall test plan.
is_public
If the test was marked publicly shared.

API Parameters

Parameter Type Test Types Required Details
state GET All No

Limit results to running,completed,templates, or any which is default.

name GET All No

Filter on test name contains this string.

start GET All No

Any date/time string which can be parsed supporting common formats such as find tests after '10/25/2016 05:00'.

end GET All No

Any date/time string which can be parsed supporting common formats such as find tests before '10/25/2016 05:00'.

loadTestId GET All No

Will limit response to the specific load test id.

page GET All No

Results are by default paged in the response based on the count in the request.

count GET All No

Number of results per request, min 1, max 50, default 10.

CURL Example

Get no parameters

curl "https://www.redline13.com/Api/LoadTest" -H "X-Redline-Auth: YOUR_API_KEY"

Get search by name

curl "https://www.redline13.com/Api/LoadTest?name=foo" -H "X-Redline-Auth: YOUR_API_KEY"