Using a JWT token and a checksum, this endpoint sets session cookies in the user’s browser.
This is typically used in iFrames where a client’s backend generates a JWT Token using its API key, and the backend then asks the end user’s browser to render an iFrame with the JWT Token embedded. The iFrame then calls this endpoint to set the cookies in the browser.
The checksum is computed using HMAC with the tokens as input to ensure the tokens have not been tampered with. If the checksum does not match, an error is thrown indicating that the tokens have been tampered with.
redirectUrl parameter.Pass a static API key for every request, provided by your customer support.
Refresh token to set in cookies.
^[A-Za-z0-9-_]+(?:\.[A-Za-z0-9-_]+)+$JWT ID token for the user.
^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+$Mandatory checksum for the tokens.
If provided, redirects to this URL after setting cookies. The URL must be within the Forestreet domain.
Session validated, and cookies set successfully; no redirectUrl provided.