Use a package manager
This topic describes how to use the Rebilly Instruments JS library with a package manager.
1. Obtain IDs and a publishable API key
When you first log in to Rebilly, you create an organization as part of the setup process. A default website is created when a new organization is created. For more information, see Organizations and websites.
- Log in or sign up to Rebilly.
- Obtain your organization ID and website ID:
- In the left navigation bar, press Settings .
- In the Management section, press My organization & websites.
- In the Organization details section, note the ID value.
- In the Website section, note the ID value.
- Obtain your publishable API key:
- In the left navigation bar, press Automations .
- In the Development section, press API keys.
- Optionally, if you have not created a publishable key:
- In top right of the screen, press Create API key.
- In the API key type section, select Publishable.
- Optionally, in the Organizations dropdown, select the organizations that can use the API key.
- Optionally, in the Allowed IPs field, enter the IP addresses that are permitted to use the API key.
- Press Save API key.
- Go to the API keys page.
- Select a publishable key and copy the Key value.
2. Set up Rebilly Instruments
In this step you will implement a basic Rebilly Instruments set up using the @rebilly/instruments
npm package.
Initial setup
Select an installation option, then install the library and provide the HTML.
Install the library
Install the library using one of the following commands:
npm install @rebilly/instruments
yarn add @rebilly/instruments
Include the HTML mounting points
The default mounting points are .rebilly-instruments
and .rebilly-instruments-summary
.
To provide custom mounting points, pass a valid CSS class or a HTML element to the RebillyInstrument.mount()
function, as a parameter.
Configure the library
This step describes the basic set up for mounting.
Mount
Use this method to initialize the library and to configure the experience. This method returns a Promise
and accepts a single configuration
object.
For more information, see RebillyInstrument.mount().
Rebilly data
Provide your publishable API key, organization ID, and website ID, to connect with the Rebilly API.
Purchase data
Provide details of the purchase amount, using one of following properties:
items
money
invoiceId
transactionId
For more information, see Provide purchase data to Rebilly Instruments
Optional, include listeners
Use the instrument-ready
and purchase-completed
to connect to the lifecycle of the library.
instrument-ready
Indicates when an instrument token is created, and provides access to the instrument response.
For more information, see RebillyInstruments.on('instrument-ready').
purchase-completed
Indicates when a purchase is completed, and provides access to the transaction response.
For more information, see RebillyInstruments.on('purchase-completed').
Basic set up complete
You now have a basic Rebilly Instruments integration. To learn more about Rebilly Instruments, see:
- index.html
- index.js
1<!doctype HTML>2<HTML>3 <body>4 <div class="rebilly-instruments-summary"></div>5 <div class="rebilly-instruments"></div>6 </body>7</HTML>
1import RebillyInstruments from '@rebilly/instruments';2// Mount Rebilly Instruments3RebillyInstruments.mount({4 organizationId: "test-org-2019-12-07",5 publishableKey: "pk_sandbox_WcUZLs3xwB7dubewna3zJA75wdMBEHeWHOyQww8",6 websiteId: "example",7 apiMode: 'sandbox',8 items: [9 {10 planId: "rebilly-e-book",11 quantity: 1,12 },13 ],14});