Skip to main content
Version: 2024.1

Get Test Discovery Services

Description

Gets all registered Test Discovery Services, including each server's details (server id, address, name, etc.).

URL

http://{Job Scheduling API IP}:{port#}/api/DiscoveryServer

HTTP method

GET

Request

Headers

Example header format:

Authorization: Basic <authorization token returned from the login method>

Content-Type: application/json

Response

Response example
[
{
"id": "df80242a-0372-46f7-b2cb-6766cd343c4b",
"address": "test-discovery-service-svc",
"name": "Robot Discovery Service",
"description": "Robot Discovery Service",
"testTypeName": "robot",
"isOnline": true,
"repository": {
"url": "",
"displayName": "ROBOT Tests"
}
}
]
Response summary
ParameterDescription/Comments
idTest Discovery Service id. (guid)
addressTest Discovery Service address. (string)
nameTest Discovery Service name. (string)
descriptionTest Discovery Service description, if defined. (string)
testTypeNameTest Discovery Service's supported test type. (string)
For example, Robot.
isOnlineWhether the Test Discovery Service is currently online. (bool)
repositoryDetails of the online test repository associated to this Test Discovery Server.
  • url: Online test repository URL. (string)
  • displayName: Name of the online test repository. (string)