GET /api/v1/courses/all

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • message string Required

      Response message

    • total number Required
    • courses object Required
      Hide courses attributes Show courses attributes object
      • name string Required
      • description string Required
      • createdAt string(date-time) Required

        The date and time the resource was created

      • updatedAt string(date-time) Required

        The date and time the resource was last updated

      • id string Required

        Item ID

  • 400 application/json

    Default bad request error 400 response

    Hide response attributes Show response attributes object
    • message string Required

      Response message

    • error string Required
    • statusCode number Required
GET /api/v1/courses/all
curl \
 --request GET 'http://localhost:3500/api/v1/courses/all'
Response examples (200)
{
  "message": "string",
  "total": 42.0,
  "courses": {
    "name": "string",
    "description": "string",
    "createdAt": "2025-05-04T09:42:00Z",
    "updatedAt": "2025-05-04T09:42:00Z",
    "id": "string"
  }
}
Response examples (400)
{
  "message": "string",
  "error": "string",
  "statusCode": 42.0
}