Health

Description

Retrieve the health status of tunnels.

Request

HTTP Method: GET

Query Parameter Description
tunnel_name Required Include the name of your tunnel
per_page Optional Set the number of results returned per page.
page Optional Specify the page of results to return if there are multiple pages. Defaults to page 1.
curl -X GET \
  https://<<META.tenant.domain>>/api/v1/admin/tunnel/:tunnel_name/health \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>'

Here :tunnel_name is the name of your tunnel

Response

A successful request will return a JSON object describing the health of the Tunnel. There is more information about healths statuses in our Tunnel FAQ page: https://www.tines.com/docs/admin/tunnel/tunnel-faqs/

Field description

Parameter Description
health The health of the tunnel. Accepted values: Down, Healthy, Inactive, Degraded
name The team name.

Sample response

{
  "health": "Healthy"
}
Was this helpful?