> 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/fetch-customer-session-summary.md).

# Fetch Customer Session Summary

## Get Cakes

<mark style="color:blue;">`GET`</mark> `{{BASE_URL}}/api/v1/fe/customer/session/summary?customerUuid=[customer_uuid]&sessionUuid=[session_uuid]`

This endpoint allows you to get free cakes.

#### Path Parameters

| Name          | Type   | Description                                |
| ------------- | ------ | ------------------------------------------ |
| session\_uuid | string | ID of the cake to get, for free of course. |

#### Headers

| Name           | Type   | Description                                                    |
| -------------- | ------ | -------------------------------------------------------------- |
| Authentication | string | Authentication token to track down who is emptying our stocks. |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```
{
    "status": 200,
    "message": "Program session summary successfully fetched",
    "data": {
        "post_quiz_score": "0/2",
        "last_active_date": "",
        "program_name": "Test Prog",
        "module_uuid": "31b2166c-dccf-4c92-a124-209c1d86c07c",
        "module_name": "Credit Scores & CRBs Tips",
        "session_uuid": "4b697a1f-29f1-4d5a-af9d-5ead6ed74d77",
        "status": "Pending"
    }
}

```

{% endtab %}

{% tab title="404 Could not find a cake matching this query." %}

```
```

{% endtab %}
{% endtabs %}
