Status Check API

Status Check API

This API checks the operational status of the application to ensure it is running and accessible. It is particularly useful for debugging connectivity and server health issues.

API Endpoint

GET /api/v1/status


Info
## Important Notes:
- All API requests must be made to this base URL followed by the specific endpoint path
- HTTPS protocol is required for all API calls
- API version v1 is currently supported
- All responses will be returned in JSON format

Headers

  • AuthorizationBearer <Access-Token> (Optional, depending on your implementation. For example, if you require authentication for all endpoints.)

Response

When the API is operational and the request is successful, it will return a JSON object indicating its status:

Notes
{ "status": "success", "message": "API is up and running", "timestamp": "3/29/2024 11:08:43 AM" }

API Error Handling

Invalid token


Notes
{
    "status": "error",
    "message": "Unauthorized",
    "errors": {
        "authorization": "Token is invalid or expired"
    }
}

    • Related Articles

    • Get List API (Helper API)

      This API retrieves the names and IDs of all lists associated with a user, including those shared with them. API URL https://app.wegodoo.com/ API Endpoint GET /api/v1/users/lists ## Important Notes: - All API requests must be made to this base URL ...
    • Add Task Comment API

      This API allows you to add a comment to a specific task in a specified list. API URL https://app.wegodoo.com/ API Endpoint POST /api/v1/tasks/comments ## Important Notes: - All API requests must be made to this base URL followed by the specific ...
    • Complete Task API

      This API allows you to mark a specific task as completed in a specified list. API URL https://app.wegodoo.com/ API Endpoint PATCH /api/v1/tasks/complete ## Important Notes: - All API requests must be made to this base URL followed by the specific ...
    • Update Task API

      This API allows you to update an existing task in a specified list. API URL https://app.wegodoo.com/ API Endpoint PUT /api/v1/tasks ## Important Notes: - All API requests must be made to this base URL followed by the specific endpoint path - HTTPS ...
    • Create Task API

      This API allows you to create a new task in a specified list. API URL https://app.wegodoo.com/ API Endpoint POST /api/v1/tasks ## Important Notes: - All API requests must be made to this base URL followed by the specific endpoint path - HTTPS ...