> For the complete documentation index, see [llms.txt](https://docs.patascore.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.patascore.com/financial-education-1/courses/fetch-customer-session-summary-1.md).

# Unlike a Course

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

#### Path Parameters

| Name       | Type    | Description              |
| ---------- | ------- | ------------------------ |
| course\_id | integer | ID of the course to like |

#### Headers

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

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

{% endtab %}

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

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

{% endtab %}
{% endtabs %}
