StarterTemplate ASP.NET Host

<back to all web services

RequestRunsAllV2

TestRun Service

The following routes are available for this service:
GET/service/automation/v2/hosts/{HostId}/currentrunsReturns pending tests for a test host
Parameters:
NameParameterData TypeRequiredDescription
HostIdpathintYesThe ID of the host computer
OffsetqueryintNoThe number of runs to skip before counting the returned runs
LimitqueryintNoThe maximum number of runs to return

To override the Content-type in your clients HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /jsv/reply/RequestRunsAllV2 HTTP/1.1 
Host: rest.qacomplete.smartbear.com 
Content-Type: text/jsv
Content-Length: length

{
	host_id: 0,
	offset: 0,
	limit: 0
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	results: 
	[
		{
			test_run_items: 
			[
				{
					automations: 
					[
						{
							run_mode: 0,
							params: {},
							agent: String,
							timeout: 0
						}
					],
					sequence_number: 0,
					stop_on_fail: False,
					status: String,
					date_started: 0001-01-01,
					date_finished: 0001-01-01,
					run_time: 0,
					test_run_results: 
					[
						{
							sequence_number: 0,
							stop_on_fail: False,
							status: String,
							step: String,
							expected_result: String,
							actual_result: String
						}
					]
				}
			],
			id: 0,
			is_sequential: False,
			status: String,
			agents: String
		}
	]
}