Infrastructure/Installer
POSTInstallerSince 1.0SynchronousAuth Required
ProbeTCP
Probe TCP connectivity to a given host and port from the installer node
Execution Availability
Try It Out
Submit a mock request using the current auth context and example-driven inputs.
Request Inputs
Body Fields
hostStringRequiredHostname or IP address to probe
Example: 192.168.1.10
portIntegerRequiredTCP port number to probe
Example: 5432
timeoutMsIntegerRequiredConnection timeout in milliseconds; default 5000, max 30000
Example: 5000
Responses
Endpoint
POST/api/v1/installer/probe/tcp
/api/v1/installer/probe/tcp
Request Example
curl -X POST '{host}/api/v1/installer/probe/tcp' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"host":"192.168.1.10","port":5432,"timeoutMs":5000}'
Response Example
200{
"reachable": true,
"error": "connection refused"
}Change History
This API has no change history records yet.
