Course Details
Use this API to get individual course basic details.
HTTP REQUEST
GET /course/{courseId}/detail
PATH PARAMETER
| Field | Type | Description |
|---|---|---|
| courseId required |
integer | A single course ID |
{
"success": true,
"data": {
"response": {
"acknowledgement": "Success",
"data": {
"courseDetail": {
"courseId": 3,
"title": "Human Resource Management",
"courseCode": "101",
"description": "Human Resource Management (HRM, or simply HR).",
"durationInDays": "180",
"startDate": "2017-09-20",
"endDate": "2022-12-31",
"thumbnail": null,
"department": [
{
"departmentId": 38,
"name": "Information Technology",
"status": true
}
],
"designation": [
{
"designationId": 6,
"name": "Senior Manager",
"status": true
}
],
"faq": "",
"demovideo": "",
"features": "",
"trainerName": "Vicky Upadhyay",
"tags": "test,123",
"seoTitle": "anlndanlsd",
"seoDescription": "asndfasd",
"keywords": "abm,sdn,adsf",
"proficiency": [
{
"proficiencyId": 1,
"name": "Level 1",
"status": true
}
],
"competency": [
{
"competencyId": 1,
"name": "Communication",
"status": true
}
],
"subject": [
{
"subjectId": 1,
"name": "Test"
}
],
"currency": [
{
"currencyCode": "INR",
"price": "500",
"isDefault": 1
}
]
}
},
"error": {
"code": "",
"internal_message": "",
"moreInfo": []
}
}
}
}
| Field | Type | Description | ||||||
| courseId | int | Course ID | ||||||
| title | string | Course Title | ||||||
| courseCode | string | Course Code | ||||||
| description | string | Course Description | ||||||
| duration | string | Course Duration | ||||||
| startDate | date | Course Start date | ||||||
| endDate | date | Course end date | ||||||
| thumbnail | string | Course thumbnail URL | ||||||
| department | JSON Array
|
|||||||
| designation | JSON Array
|
|||||||
| faq | string | Course Faq | ||||||
| demovideo | string | Demo video URL | ||||||
| features | string | Course feature as HTML | ||||||
| trainerName | string | Display trainee name | ||||||
| tags | string | Tags for search | ||||||
| seoTitle | string | Course SEO | ||||||
| seoDescription | string | Course SEO | ||||||
| keywords | string | Course SEO | ||||||
| currency | JSON Array
|
|||||||
| proficiency | JSON Array
|
|||||||
| competency | JSON Array
|
|||||||
| subject | JSON Array
|
|||||||
| Code | Description |
|---|---|
| 1001 | ‘Missing courseId’ |
| 1002 | ‘Invalid courseId’ |
For general error details, click here.