GET
/api/v1/courses/{id}/full
curl \
--request GET 'http://localhost:3500/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
}