# /systems/{id}/reachability - Check if system web UI is reachable **GET /systems/{id}/reachability** Checks if the system's web UI is reachable from the backend server. The target URL is constructed from the system's FQDN and type: - NS8: `https://{fqdn}/cluster-admin` - NethSecurity: tries `https://{fqdn}:443` first, then `https://{fqdn}:9090` Returns `reachable: true` with the responding `url` on success, or `reachable: false` if unreachable. ## Servers - Backend API server (port 8080): https://api.your-domain.com/api (Backend API server (port 8080)) - Collect API server (port 8081): https://collect.your-domain.com/api (Collect API server (port 8081)) ## Authentication methods - Bearer auth ## Parameters ### Path parameters - **id** (string) System ID ## Responses ### 200 Reachability check completed #### Body: application/json (object) - **code** (integer) - **message** (string) - **data** (object) ### 400 Bad request - validation error #### Body: application/json (object) - **code** (integer) HTTP error code - **message** (string) Error message - **data** (object) ### 401 Unauthorized - invalid or missing token #### Body: application/json (object) - **code** (integer) - **message** (string) - **data** (object | null) ### 403 Forbidden - insufficient permissions #### Body: application/json (object) - **code** (integer) - **message** (string) - **data** (object | null) ### 404 Resource not found #### Body: application/json (object) - **code** (integer) HTTP error code - **message** (string) Error message - **data** (object) [Powered by Bump.sh](https://bump.sh)