cURL
curl --request GET \ --url https://api-v2.missioninbox.com/health/ \ --header 'Authorization: Basic <encoded-value>'
{ "status": "healthy", "message": "Service is running", "timestamp": "2023-12-01T10:00:00Z" }
Check if the service is running and healthy
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Service is healthy