Skip to content

Status Check

This endpoint is used to check the health of the backend services and the connectFi API.

Endpoint Action
/health Check the health of the application

Health

Description:

This endpoint is used to check the health of the application. Currently, a successful response indicates that the server is listening.

Request method and URL:

GET /health

Request headers: N/A

Request body: None

Possible responses:

200 (HTTP response status code) -- Success, application is healthy

{
    "code": "0",
    "data": {
        "status": true,
        "name": "connectfi",
        "version": "1.0.10"
    }
}

Back to Top