Start a Lesson

This API allows you to start a lesson

GET {{BASE_URL}}/api/courses/{lesson_id}/start

Path Parameters

Name
Type
Description

course_id

integer

ID of the course to like

Request Body

Name
Type
Description

phone_number

string

User phone number

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": "Lesson started successfully",
    "data": {
        "message": "Lesson started successfully",
        "status": "in_progress"
    }
}

Start Lesson Request

{
    "phone_number": "0700112233"
}

Last updated

Was this helpful?