Live
GET
/health/live
const url = 'https://example.com/health/live';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/health/liveReturn the liveness status.
Returns: The liveness payload.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response Live Health Live Get
object
key
additional properties
string
Examplegenerated
{ "additionalProperty": "example"}