GET /api/v1/courses/{id}/full

Path parameters

  • id string Required

Responses

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

      Response message

    • course object Required
      Hide course attributes Show course attributes object
      • 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

      • departments object Required
        Hide departments attributes Show departments attributes object
        • 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

        • name string Required

          Name of the department

        • instituteid string Required

          id of the parent insitute

      • name string Required
      • description string Required
      • intakes array[string] Required
      • units array[string] Required
  • 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/{id}/full
curl \
 --request GET 'https://api.echoplain.social/api/v1/courses/{id}/full'
Response examples (200)
{
  "message": "string",
  "course": {
    "createdAt": "2025-05-04T09:42:00Z",
    "updatedAt": "2025-05-04T09:42:00Z",
    "id": "string",
    "departments": {
      "createdAt": "2025-05-04T09:42:00Z",
      "updatedAt": "2025-05-04T09:42:00Z",
      "id": "string",
      "name": "string",
      "instituteid": "string"
    },
    "name": "string",
    "description": "string",
    "intakes": [
      "string"
    ],
    "units": [
      "string"
    ]
  }
}
Response examples (400)
{
  "message": "string",
  "error": "string",
  "statusCode": 42.0
}