I'm trying to query my personal Microsoft Lists with Microsoft Graph API without success.
My list is a Microsoft List located in https://lists.live.com/.
My list's URL shown in my browser is https://lists.live.com/?listId={list_id}_{user_id}
If I log into my personal microsoft account and I use the typical REST API endpoint in my browser address bar and hit ENTER in my keyboard, it yields the expected results in XML:
https://lists.live.com/personal/{user_id}/_api/Web/Lists(guid'{list_id}')/items
However, whenever I try to query this Microsoft List using Microsoft Graph Explorer, I get this result:
{
"error": {
    "code": "InternalServerError",
    "message": "Unable to find target address",
    "innerError": {
        "date": "2023-12-31T20:25:24",
        "request-id": {guid_1},
        "client-request-id": {guid_2}
    }
}
I've also gotten my Site Id with this endpoint typing it manually in the address bar and gotten results
https://lists.live.com/personal/{user_id}/_api/site/id
And then used that site id to try to at least get a pointer that I'm in the right direction in the Explorer
https://graph.microsoft.com/v1.0/sites/{site_id}/lists
{
    "error": {
        "code": "InternalServerError",
        "message": "Unable to find target address"
    }
}
But alas I get the above error.
I don't know how to get information from Microsoft Lists for personal accounts (not Sharepoint) using REST API, does anyone know how to do this?
UPDATE I've also found this end-point: `https://lists.live.com/personal/{user_id}/_api/v2.0/sites/root/lists/{list_id}/items
Happy new year!
live.comand then use that token to use the previoussharepoint.comREST API?