Test
DescriptionTests a connection, including SSL handshake and hostname verification.
Request
URLURL
Request Body
{
"host": "string",
"port": 0
}
The host (or IP address) to connect to.
The port to use when connecting.
A list of URLs being authorized by the user to retrieve additional CA certificates from, if necessary, to complete the certificate chain to its trust anchor.
Upon retrieving the certificate chain presented during the handshake, if signing CA certificates were not included, but a location is specified for the 'caIssuers' access method of the 'Authority Info Access' extension (as described in RFC 5280 Section 4.2.2.1) of those certificates and that location is one of these supplied URLs, then additional certificates will be retrieved from those URLs in accordance with the protocol laid out in the RFC.
Any failure to retrieve this certificate will NOT fail the test connection request, nor will the error associated with this failure be returned.
In the unlikely event that the CA Issuers URL specifies `https` instead of `http`, the original certificate, that included that URL, will be temporarily used to trust the server during ssl handshake
Endpoint/Hostname verification algorithm to be used during SSL/TLS/DTLS handshake. Their values are as follows:
When this field is not set, the default value null indicates no hostname verification will be performed.The URN of a ProxyConfiguration to use for the test. Only one of proxyConnection or preConfiguredProxy can be specified. If neither is specified then no proxy is used to test the connection.
Proxy connection to use for test. Only one of proxyConnection and preConfiguredProxy can be specified. If neither is specified, then no proxy is used to test the connection.
If the connection should use https.
Maximum time (in seconds) any step in the test should wait for a response.
Authentication
Response
Response BodyResponse Body
200 OK
{
"proxyProbe": {
"additionalCAIssuers": [
"string"
],
"canConnect": false,
"certificateChain": "string",
"connectionResult": "string",
"resolvedIp": "string",
"result": "string",
"sslHandshake": false,
"sslResult": "string"
},
"targetProbe": {
"additionalCAIssuers": [
"string"
],
"canConnect": false,
"certificateChain": "string",
"connectionResult": "string",
"resolvedIp": "string",
"result": "string",
"sslHandshake": false,
"sslResult": "string"
}
}