Tilli X – FreemanOnline (FOL) integration (<iframe /> test)

This is a test page for the integration of Tilli X and FreemanOnline (FOL) using an <iframe />

Press the button below to return to FreemanOnline (passing back the mopId and mopGuid)

Parameters being sent back to FreemanOnline:

mopId: 123456

mopGuid: 3473fc16-1346-4af8-ac08-bc60ab581acc

RAW CODE (PostMessage API call):

function returnToFreemanOnline(mopId?: string, mopGuid?: string) {
  window?.parent?.postMessage(
    {
      mopId,
      mopGuid,
    },
    "*"
  );
}