Tusflow

Check API health status

Returns the health status of the API and its dependent services (S3 and Redis)

GET
/health
/health

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

JWT token for authentication

In: header

X-API-Key<token>

Optional API key for authentication

In: header

curl -X GET "https://uploader.tus.api.mpesaflow.com/health" \
  -H "Authorization: Bearer <token>"

System is healthy

{
  "status": "healthy",
  "timestamp": "2019-08-24T14:15:22Z",
  "services": {
    "s3": "up",
    "redis": "up"
  },
  "version": "string"
}

Edit on GitHub

Last updated on