Teleporting player in game to a ExperienceInvite link

(This is not about Hyra API, included for context) The project I’m working on uses Hyra. I am specifically fetching an API endpoint that periodically that lets you retrieve upcoming sessions. What Hyra provides you with is a join link that will let you directly join a game instance where the session is hosted, like this: https://www.roblox.com/sharecode=9b5a5b8abb2cc847a9(...)&type=ExperienceDetails&stamp=17378(...)
However, the project involves a session board that aims to display these sessions nicely, and provide a join button. Issue arises, I don’t know how to utilize (or if it’s even possible) the sharecode to teleport a player using TeleportService to mentioned sharecode. Keep in mind the placeId is not under the same Experience, so a hacky workaround like MessagingService won’t do any good.

All help appreciated,
natix1

As far as I am aware this is not possible by sharecodes. However if you are using this to create a join link for your game can’t you just use JobID for this (since you mentioned TeleportService), or do you need the link for something else?

As far as I’m afraid you can only use messaging service in the same game, and the games I’m redirecting to are not a part of the main game. Although MessagingService would work for the current use case; a much cleaner, maintainable and futuristic solution (for a lot of reasons; adding new types of sessssions, etc.) would be to somehow teleport players using the invite code. Just thought I’d shoot my shot. While I appreciate your reply I am going to keep this thread open for some time - maybe someone will come up with a better solution. Thanks for the reply!