TypeScript
const options = {method: 'GET'}; fetch('http://localhost:4060/health', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "status": "<string>", "timestamp": "<string>" }
Returns the health of the Workflows Service API
Health check response
Was this page helpful?