I am building an SPA app with a guest checkout. During this, I call one API to create the guest user's address and name data, and then another to add other details about the checkout.
Is there a way to ensure that the current guest/anonymous user who is in session is from the same session, when calling different APIs? I can't create a token on the client because then the username/password for the token would be accessible to anyone. Is there a common pattern or product that people use for this without creating a token?
Thanks
Terry