Course Categories
List all categories for a company. Courses can be linked to a particular category.
HTTP REQUEST
POST https://app.alphalearn.com/webapi/v1/course-category
QUERY PARAMETERS
| Field | Type | Description |
|---|---|---|
| pageSize | Integer | Number of records to be returned with in a single API call. Default is 20 |
| page | Integer | Page number of the records. |
Example Response:
200 OK
{
"success": true,
"data": {
"category": [
{
"id": "integer",
"parent_id": "integer",
"name": "string",
"totalCourses": "integer"
},
],
"totalCount": "integer",
"pageSize": "integer",
"page": "integer"
}
}