Health check
GET
/v1/health
const url = 'https://api.frontmail.dev/v1/health';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://api.frontmail.dev/v1/healthResponses
Section titled “ Responses ”The API is up.
Media typeapplication/json
object
ok
required
boolean
Example
{ "ok": true}