Last updated

These docs are intended for a developer audience.

Integrate a hosted payment form

This guide describes how to integrate a hosted payment form into your website.

Hosted payment forms simplify the process of accepting payments. Rebilly hosts your payment forms and ensures that your payments process is secure and PCI-compliant.

Use payment forms to process payments from your customers. To interact with an example hosted payment form, see Interactive example.

To complete this tutorial, an active gateway is required. If you are testing in the sandbox environment, a test payment gateway called TestProcessor is already configured. For more information, see Set up a payment gateway.

Prerequisites

Complete this section to create resources and also to gather your website ID, organization ID, and secret API key. These resources and details are required to complete this guide using your Rebilly sandbox environment. If you have already created these resources, skip this step and continue to Set up a hosted payment form.

Expand to complete

1) Obtain IDs and a secret API key

This step describes how to obtain your website ID, organization ID, and secret API key from your Rebilly sandbox account.

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.

  1. Log in or sign up to Rebilly.
  2. Obtain your organization ID and website ID:
    1. In the left navigation bar, click Settings .
    2. In the Management section, click My organization & websites.
    3. In the Organization details section, note the ID value.
    4. In the Website section, note the ID value. For more information, see Organizations and websites.
  3. Obtain your secret API key:
    1. In the left navigation bar, click Automations .
    2. In the Development section, click API keys.
    3. Optionally, if you have not created a secret key:
      1. In top right of the screen, click Add API.
      2. In the API key type section, select Secret, then complete the form and click Save API key.
      3. Go back to the API Keys page.
    4. Select a secret key and copy the Key value.

2) Create a product

This API interaction creates a product in your Rebilly sandbox account. For more information, see Create a product.

To create a product you must have your Rebilly website ID, organization ID, and secret API key. For more information, see Obtain IDs and a secret API key.

How to use the interactive example
  1. Enter your organization ID:
    1. Beneath the Environment field, click {{server}}.
    2. Beneath the URL, click Show nested variables, then click Edit.
    3. In the Value field, enter your organization ID and click Save.
  2. Enter your secret API key:
    1. Click Security.
    2. In the API key field, click {{SecretApiKey}}, then click Set value.
    3. In the Value field, enter your secret Rebilly sandbox API key and click Save. For more information, see Prerequisites.
  3. Optionally, to change the product details, click Body.
  4. Click Send.
    The id value from this response is used as the productId value in Step 3.
Loading...

3) Create a pricing plan

This API interaction creates a pricing plan for a product in your Rebilly sandbox account. For more information, see Create a plan.

To create a pricing plan, you must have a product ID. For more information, see Create a product.

How to use the interactive example
  1. Enter your organization ID:
    1. Beneath the Environment field, click {{server}}.
    2. Beneath the URL, click Show nested variables, then click Edit.
    3. In the Value field, enter your organization ID and click Save.
  2. Enter your secret API key:
    1. Click Security.
    2. In the API key field, click {{SecretApiKey}}, then click Set value.
    3. In the Value field, enter your secret Rebilly sandbox API key and click Save. For more information, see Prerequisites.
  3. Enter the product ID from the Step 2 response.
    1. Click Body.
    2. In the productId field, enter the id value from Step 2.
    3. Optionally, change the plan details.
  4. Click Send.
Loading...

Set up a hosted payment form

1

Set up the server

Set up an Express node app to authenticate the client.

Install and initialize dependencies

Dependencies may change from implementation to implementation. This example is for an app that uses Node.js and Express.

server.js

Provide credentials

Provide your secret API key and website ID. For more information, see Prerequisites.

server.js

Initialize Rebilly JS SDK

Set up the Rebilly JS SDK, and provide sandbox mode and API key.

server.js

Define route for GET requests

Define a route for handling HTTP GET requests to the /example endpoint. For more information, see Express example.

server.js

Define route for POST requests

Define route for handling HTTP POST requests to the /payment endpoint, and extract parameters from customerId, currency, amount, and redirectUrl from the request body. These values are used to create a transaction.

Note: redirectUrl is the URL that the customer is redirected to after a payment is completed.

server.js

Create a transaction

Create an asynchronous transaction that sends data to the Rebilly API and waits for a response.

server.js

Configure the redirect

Check if the response includes an approvalUrl. This value is the hosted payment form.

If this value is included in the response, redirect the client to the URL to complete the payment.

If this value is not returned, send the transaction details back to the client.

server.js

Listen for requests

Start an Express server on port 8080, listen for host and port information from the server, and log a messages to the console.

server.js
2

Set up the HTML page

Optional: Display transaction parameters

Display the transaction parameters in a code snippet.

example.html

Add a button

Add a button to trigger payment processing.

example.html
3

Set up the client

Locate the process payment button

Locate the button element with the ID process in the HTML form.

client.js

Add an event listener

Add an event listener to the button element to listen for click events.

client.js

Disable the button

Disable the button to prevent multiple clicks.

client.js

Send a POST request

Send a POST request to the /payment endpoint.

client.js

Provide required data

Provide payment data.

client.js

Parse the response

Parse the JSON response from the server.

client.js

Redirect the user

Redirect the user to the provided URL.

client.js

Log errors

Log any errors that occur during the process.

client.js

Re-enable the button

Re-enable the button after the request is complete.

client.js

Basic set up complete

You now have a basic hosted payment form integration. To learn more, see:

Copy to clipboard
  • server.js
  • client.js
  • example.html
1const express = require("express");
2const RebillyAPI = require("rebilly-js-sdk").default;
3const app = express();
4const port = 3000;
5
6app.use(express.static("client"));
7app.use(express.json());
8
9const REBILLY_API_SECRET_KEY = "REBILLY_API_SECRET_KEY";
10const REBILLY_WEBSITE_ID = "REBILLY_WEBSITE_ID";
11
12
13const rebilly = RebillyAPI({
14 sandbox: true,
15 apiKey: REBILLY_API_SECRET_KEY,
16});
17
18app.get("/example", async (req, res) => {
19 res.redirect(301, "/example.html");
20});
21
22app.post("/payment", async function (req, res) {
23 const { customerId, currency, amount, redirectUrl, type } = req.body;
24
25 const transaction = await rebilly.transactions.create({
26 data: {
27 websiteId: REBILLY_WEBSITE_ID,
28 customerId,
29 currency,
30 amount,
31 redirectUrl,
32 type,
33 paymentInstruction: { methods: [] },
34 },
35 });
36
37 const approvalUrl = transaction.fields._links.find(
38 (link) => link.rel === "approvalUrl",
39 );
40 if (approvalUrl) {
41 res.send(approvalUrl);
42 } else {
43 res.send(transaction.fields);
44 }
45});
46
47app.listen(port, () => {
48 console.log(`Sandbox listening on port ${port}`);
49});

Interactive example

This is an interactive example of a Rebilly hosted payment form. Click Process payment to see the hosted form.

To complete the payment flow, enter any 3 digits for the CVV value, or add new a test payment card.