-
Users Handbook
-
-
-
- Intro & Basics
- All Objects have Descriptions
- Check for unused procedures
- Compiled Procedures up to date
- Invalid Source Layers
- Required Columns
- Check for abnormally ended Jobs
- Check for blocked Jobs
- Check for disabled Tasks
- Check for duplicate tasks in different Jobs
- Check for duplicate tasks in same Job
-
-
-
Administrators Handbook
-
- Register URL
- Configure SSL/HTTPS
- Configure Proxy-Server
- How to edit the appsettings.json file
- System Settings
- Global Parameters
- Allow Service Account to Logon as a Service
- LDAP & SSO Authentication
- Migrating Testcases and Configuration
- Licenses Management
- Manual Configuration
- Exposing the BiG EVAL REST API to other Network Segments
-
- Articles coming soon
-
Developers Handbook
-
Known Problems
-
Demo Virtual Machine
-
Release Notes
-
General
Request
URL
/api/v1/default/suites/{suiteId}/execute
Verb
GET
URL-Parameters
Following are the parameters used in the URL or the QueryString showed by a placeholder with curly brackets. Replace the full parameter with the actual value including the curly brackets.
Parameter | Description |
---|---|
suiteId | The ID of the suite that should be run. This value can be found in the browsers URL when opening a suite in the BiG EVAL frontend. |
Header
Parameter | Description |
---|---|
Authorization | The Access-Token as explained in Authentication. |
Body
not needed
Response
{ "status": "QUEUED", "jobId": "123123", }
Element | Description |
---|---|
status | Returns the status of the job. Normally this is the value QUEUED. Otherwise the request returns an HTTP error code. |
jobId | Returns the ID of the asynchronous job that was started. |
Example: PowerShell
# The base-url of the BiG EVAL API and instance. $bigevalUrl = "https://mybigevalserver/" $baseUrl = $bigevalUrl+"api/v1/default/" # The ID of the suite to execute. $suiteId = 1 # Note that you need to request the AccessToken first. We do not show that in this example. $accessToken = "123123123" # Execute the suite. $executeResult = Invoke-RestMethod -Uri ($baseUrl + "suites/" + $suiteId + "/execute") -Headers @{"Authorization"="Bearer $accessToken"}
Table of Contents