For the complete documentation index, see llms.txt. This page is also available as Markdown.

Like a Course

This API allows you to like a given course

GET {{BASE_URL}}/api/courses/{course_id}/like

Path Parameters

Name
Type
Description

course_id

integer

ID of the course to like

Headers

Name
Type
Description

Authentication

string

Authentication token to track down who is emptying our stocks.

{
    "status": 200,
    "response_code": 0,
    "success": true,
    "errors": [],
    "message": "Course liked successfully",
    "data": {
        "message": "Course liked successfully"
    }
}
{
    "status": 404,
    "message": "Course not found"
}

Last updated