# Complete a Lesson

<mark style="color:blue;">`GET`</mark> `{{BASE_URL}}/api/courses/{lesson_id}/complete`

#### 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. |

{% tabs %}
{% tab title="200 OK" %}

```json
{
    "status": 200,
    "response_code": 0,
    "success": true,
    "errors": [],
    "message": "Lesson completed successfully",
    "data": {
        "message": "Lesson completed successfully",
        "status": "completed"
    }
}
```

{% endtab %}

{% tab title="404 Not Found" %}

```json
{
    "status": 404,
    "message": "Lesson not found"
}
```

{% endtab %}
{% endtabs %}
