Uplift Initialization Configurations
  • 17 Oct 2024
  • 1 Minute to read
  • Dark
    Light

Uplift Initialization Configurations

  • Dark
    Light

Article summary

Uplift Web API Integration (Payments)

Note: This is exclusive to the Uplift Web API Integration (Payments) product. Please contact your account manager for more information on this product. 

Uplift’s Payment library is initialized by using the window.Uplift.Payments.init(initConfig) which takes a parameter initConfig in the form of key-value pairs. Details regarding each key, their value type, allowed values and description is provided below.

KeyValue TypeAllowed ValuesDescription
localeString
  • en-US
  • en-CA
  • fr-CA
IETF language tag (first 2 letters are language code, last 2 refer to country code)
currencyString
  • USD
  • CAD
3-letter currency code
checkoutBooleanAnyType of page (true = payment page; false = non-payment page)
channelString
  • desktop
  • mobile
  • desktop - app
  • mobile - app - ios
  • mobile - app - android
Attribute to distinguish the path that is used to complete the transaction
container
(required for payment pages)
StringAny, Example:
"#up-pay-monthly-container"
CSS selector of DOM container for Uplift Pay Monthly iFrame, exclusive to payment page
Refer to the Pay Monthly Selector information
onChange
(required for payment pages)
Function NameAny, Example:
myOnChangeCallback
Callback handler, exclusive to payment page
Refer to callback handler information

Uplift Agent Connect

Note: This is exclusive to the Uplift Agent Connect product. Please contact your account manager for more information on this product.

Uplift’s Agent Connect library is initialized by using the window.Uplift.Agent.init(initConfig) which takes a parameter initConfig in the form of key-value pairs. Details regarding each key, their value type, allowed values and description is provided below.

KeyValue TypeAllowed ValuesDescription
agentAgentObjectAgentObjectInformation relating to the current agent
localeString
  • en-US
  • en-CA
  • fr-CA
IETF language tag (first 2 letters are language code, last 2 refer to country code)
currencyString
  • USD
  • CAD
3-letter currency code
checkoutBooleanTrueType of page (payment page = true;)
payMonthlyContainerStringAny
Example: "#up-pay-monthly-container"
CSS selector of DOM container for Uplift Pay Monthly iFrame
Refer to the Pay Monthly Selector information
onChange
Function NameAny
Example: myOnChangeCallback
Callback handler for the different payment page status
Refer to callback handler information

AgentObject

KeyValue TypeAllowed ValuesDescription
idStringAnyAgent's unique identifier
agencyIdStringAnyAgent's agency's unique identifier
emailStringEmail format (domain)Agent's email
firstNameStringAnyAgent's first name
familyNameStringAnyAgent's family name
phoneNumberStringOnly numerical, no special charactersAgent's phone number

Example:

{
  "id": "identifier",
  "agencyId": "agency-identifier",
  "email": "arthur@uplift.com",
  "firstName": "Arthur",
  "familyName": "Davis",
  "phoneNumber": "0000000000"
}

Was this article helpful?

What's Next