Hi.
I have a skill developed in Alexa which is linked with a lambda function in AWS.
In the lambda function when I start the session I have the following function:
[code] function onSessionStarted(sessionStartedRequest, session)
{
console.log("Session starts");
console.log(`onSessionStarted requestId = ${sessionStartedRequest.requestId}, sessionId = ${session.sessionId}`);
}
[/code]
Can sessionID be linked to the alexa account ID of who ran the skill?