How to create a cover (homepage with HTML widget) for user who participates in multiple projects?

Hello, @alvarolb

Currently, a user registered in multiple projects can navigate between projects using the top menu.

image

However, I would like to create a cover (a homepage [a new project] with just an HTML widget with links to the projects) so that the user can view the projects he is registered with and click on a project. It would be a complementary functionality to the top menu.

I tried using the APIs with HTML widget, but it didn’t work. An error is returned: {"error":{"message":"unauthorized"}}:

New Project with the name “HOME - Customer A”, which contains only an HTML widget with links to the other projects:

<html>
<head>
<meta charset="UTF-8"/>
<title>Business Customer Name</title>
</head>
<body>
    <p>
        <a href="https://xxxxx.xxxx.com/v1/users/customer_name/projects?id=project_a">Project A (Link to Project Dashboard)</a>
    </p>
    <p>
        <a href="https://xxxxx.xxxx.com/v1/users/customer_name/projects?id=project_b">Project B (Link to Project Dashboard)</a>
    </p>
</body>
</html>

Browser Network shows 3 steps when using the top menu (permissions → dashboard → project?id=XXXX), when the user switches projects:
image

How could we configure the HTML widget and API to create this first page (cover) (New Project with the name “HOME - Customer A”, which contains only an HTML widget with links to the other projects)?