User Auth Session ID
Wednesday, December 5, 2018 at 10:59amGuys,
We are looking at this page for creating the Auth token for a user.
https://docs.esignlive.com/content/c_integrator_s_guide/rest_api/authentication_tokens.htm?Highlight=user%20authentication#Create
We have to do a POST request to this api call.
/authenticationTokens/user
The documentation says that either a Cookie header or an Authorization header is required.
I am curious to know, where do we get the value for the SessionId in the cookie example below.
Cookie: ESIGNLIVE_SESSION_ID=cdf5b882667d24a2
We are trying to get a user authentication for our Notary so that when they click the link, it will take them directly into the signing room.
      
                                    
Reply to: User Auth Session ID
Wednesday, December 5, 2018 at 12:11pmGET {endpoint}/auth?signerAuthenticationToken={AuthenticationToken}To note: 1. This API doesn't start with /api 2. You need to use the Authentication Token (retrieved from the documentation you linked) as the input parameter. 3. Authentication Token contains upper characters and session token doesn't, so it's easy to tell from them. Hope this could help! DuoReply to: User Auth Session ID
Thursday, December 6, 2018 at 03:28amReply to: User Auth Session ID
Thursday, December 6, 2018 at 05:40amHTTP Request POST /api/authenticationTokens/sender HTTP Headers Accept: application/json Content-Type: application/json Authorization: Basic api_key Request Payload { "packageId: "5vjLRY5MWrDJ6MzRAEyCKOy5IH0=" } Response Payload { "value": "MjY0MjQ4MzgtMTJlOS00MzhjLTgzODMtMzJmMGNiZTg3ODBl" }The difference between sender token and user token is, user token contains access to the whole account while sender token only has access to the specific package, so it's better in this scenario #2. build below url: (1)please replace the endpoint (2)as you can notice, the url seperates into two parts:https://sandbox.esignlive.com/auth?authenticationToken=NTkxZmQ1Y2EtYzc5OC00MmQxLWE5YWItMDIxOGRkNDYxY2Qz&target=https://sandbox.esignlive.com/a/transaction/Sn26VSXicuT9_TngE8EEzp9_U7w=/signThe first part contains the credential logging into the account, and the second part is the target after logging in, we just put the potential Signing Room Url. Hope this could help! DuoReply to: User Auth Session ID
Thursday, December 6, 2018 at 09:29amReply to: User Auth Session ID
Thursday, December 6, 2018 at 09:33amReply to: User Auth Session ID
Thursday, December 6, 2018 at 09:45amReply to: User Auth Session ID
Thursday, December 6, 2018 at 09:46amReply to: User Auth Session ID
Thursday, December 6, 2018 at 09:49amReply to: User Auth Session ID
Thursday, December 6, 2018 at 09:50amReply to: User Auth Session ID
Thursday, December 6, 2018 at 11:07am