This should be a feature! Here are example instructions from a vendor (de-identified) I'm trying to set this workflow up with:
Test URL
URL with variables:
FirstName= <First Name>
&LastName= <Last Name>
&TBDid= <Unique Identifier> (such as an employee/student ID)
&ref= <MD5 Hash of Token>
&date= <Today’s Date>
To build the token:
1. Substitute the first and last name with your chosen test subject. These aren’t critical to the token,
but will get cached by the application system
2. The TBDid can be any unique identifier of your choosing
3. Build the token using the format TDBDDYTYBMDMTBDid. For example, if today's date =
01/01/18 and Employee ID = 7777777 --> t0b7d1t8b0d57777777
4. Encrypt the token using MD5 (For the uninitiated, check out
5. Substitute the ref parameter with the encrypted string.
6. Substitute the date parameter with the date used above in the format MM/DD/YYYY.
7. Copy the full url to the browser. You should land on the login page.
8. You may create a new profile or use a previously created one. There will be no indication to the
user at login or profile creation that the token was received and verified.