HomeMobile APIReact NativeFullcaptureCallbacks and DelegatesCallbacks and DelegatesAdditional Information FS.getCurrentSessionURL - Retrieving a session URL at time of recording Getting Started with React Native Data Capture ES6FullStory.onReady().then(function (result) { const replayStartUrl = result.replayStartUrl; const replayNowUrl = result.replayNowUrl; const sessionId = result.sessionId;});async/awaitconst { replayStartUrl, replayNowUrl, sessionId } = await FullStory.onReady();onReady listener method gets called once Fullstory has been fully initialized and has started session capture.Example InvocationES6FullStory.onReady().then(function (result) { const replayStartUrl = result.replayStartUrl; const replayNowUrl = result.replayNowUrl; const sessionId = result.sessionId;});async/awaitconst { replayStartUrl, replayNowUrl, sessionId } = await FullStory.onReady();