Authentication REST Service
  • 16 Nov 2023
  • 1 Minute to read
  • Dark
    Light

Authentication REST Service

  • Dark
    Light

Article summary

Overview

In order to provide a more seamless and secure experience for agents, we rely on the booking platform to inform Uplift whether or not an agent is currently logged in to the booking platform.

Authentication REST Service is optional

The below section is only needed if the Authentication REST Service is enabled.

The Authentication REST Service is enabled/disabled in the Uplift system and it is defined by your team during onboarding process.

For an easier understanding of the authentication flow, please refer to the diagram below.

agent-connect-auth-service

To achieve this, we need a simple REST service that will accept an agentID and a sessionToken.

  1. The agentID is given to us when the Uplift Agent Library is initialized (in the agent object).
  2. We retrieve the sessionToken by invoking the sessionTokenCallback function, which is also provided upon initializing the Uplift Agent Library.
function initAgentPayMonthly() {
  window.Uplift.Agent.init({
    agent: {
      id: "identifier",
      agencyId: "agency-identifier",
      email: "arthur@uplift.com",
      firstName: "Arthur",
      familyName: "Davis",
      phoneNumber: "0000000000"
    },
    locale: "en-US", // "en-CA", "fr-CA"
    currency: "USD", // "CAD"
    onChange: myOnChangeCallback,
    sessionTokenCallback: mySessionTokenCallback, // Your sessionTokenCallBack goes here
    payMonthlyContainer: "#up-agent-pay-monthly-container",
    checkout: true
  });
}

Given these two values, the service will send a response with a status code of either 204 for a valid session or 403 for an invalid session. If the agent’s session is not valid, your callback handler will receive a response with the status SERVICE_UNAVAILABLE, and Uplift Pay Monthly should not be displayed as a payment method.

Note you are able to start developing the integration to Uplift Pay Monthly before completing the build of the Authentication REST API; however, having this API is required for testing and deployment in production.

⚠️ In order to facilitate faster testing and integration, we have provided a testing sessionToken:“asdf” that can be used while you work on building your authentication service.

📘 We recommend that the REST service you provide has HTTPS enabled to provide an added layer of security.

Example Implementation

An example request from the Uplift server will look as shown below.

GET https://partner.com/uplift-auth?agent_id=agent%40partner.com&session_token=abc123

The response from the REST service should be as shown below. Note we will be focusing on the status code to determine the validity of an agent’s session.

Success response: Code: 204 NO CONTENT
Error response: Code: 403 FORBIDDEN


Was this article helpful?