Last updated
These docs are intended for a developer audience.Dismiss

Hosted deposit API integration

This topic describes how to integrate a Rebilly hosted deposit form into your website, or checkout flow, using the Rebilly API.

Prerequisites

Complete this section to create resources and 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.

To complete this guide, 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.

Payment methods that are displayed in the hosted deposit form are based on the gateway configuration. For more information, see Set up a payment gateway.

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, press Settings .
    2. In the Management section, press 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, press Automations .
    2. In the Development section, press API keys.
    3. Optionally, if you have not created a secret key:
      1. In top right of the screen, press Create API key.
      2. In the API key type section, select Secret.
      3. Optionally, in the Organizations dropdown, select the organizations that can use the API key.
      4. Optionally, in the Allowed IPs field, enter the IP addresses that are permitted to use the API key.
      5. Press Save API key.
      6. Go to the API keys page.
    4. Select a secret key and copy the Key value.

Step 1: Upsert a customer

This step creates or updates (upserts) a customer with a specified ID.

This operation prevents duplicate customers. If the customer already has an identifier within your system, that customer is updated. If the customer does not have an identifier, a new customer is created.

For detailed information about this API operation, see Upsert a customer.

Interactive example

This example creates a customer with a specified ID.

How to use the interactive example
  1. Enter your organization ID:
    1. Beneath the Environment field, press {{server}}.
    2. Beneath the URL, press Show nested variables, then press Edit.
    3. In the Value field, enter your organization ID and press Save.
  2. Enter your secret API key:
    1. Press Security.
    2. In the API key field, press {{SecretApiKey}}, then press Set value.
    3. In the Value field, enter your secret Rebilly sandbox API key and press Save. For more information, see Prerequisites.
  3. Enter a customer ID:
    1. In the URL field beneath the Environment field, press {{id}}.
    2. Press Set value.
    3. In the Value field, enter a customer ID.
      Example: cus_01HDP7FFX2PGDVH1995EA4QY95.
  4. Enter your website ID:
    1. Press Body.
    2. In the websiteId, enter your website ID.
    3. Optionally, change the customer details.
  5. Press Send.
    The id value from this response is used as the customerId value when creating the order in Step 2. The websiteId value is also used in Step 2.
Loading...

Step 2: Create a deposit request

This step creates a deposit request using the customer that you created, and website ID that you obtained, in the previous step. When the customer opens the URL included in the response, a Rebilly hosted deposit form is displayed to complete the deposit.

In the response, in the _links field, under "rel": "deposit", the href field contains the deposit URL.

For detailed information about this API operation, see Create a deposit request.

Interactive example

This example creates a deposit request using the customerId value you created in the previous step.

How to use the interactive example
  1. Enter your organization ID:
    1. Beneath the Environment field, press {{server}}.
    2. Beneath the URL, press Show nested variables, then press Edit.
    3. In the Value field, enter your organization ID and press Save.
  2. Enter your secret API key:
    1. Press Security.
    2. In the API key field, press {{SecretApiKey}}, then press Set value.
    3. In the Value field, enter your secret Rebilly sandbox API key and press Save. For more information, see Prerequisites.
  3. Enter the deposit details:
    1. Press Body.
    2. In the customerId field, enter the id value from the previous response in Step 1.
    3. In the websiteId field, enter your website ID.
    4. Optionally, to apply a specific strategy for the request use the strategyId field. To learn more about deposit strategies, see Deposit strategies.
    5. Optionally, to apply a deposit amount limit, in the amountLimits field, specify minimum and maximum amount values. Limits override amounts and customAmount values.
  4. Press Send.
    In the response, in the _links field, under "rel": "deposit", the href field contains the deposit URL. The value is used to redirect the customer to the deposit form in Step 3.
Loading...

Step 3: Redirect the customer to the deposit URL to complete the deposit

Redirect the customer to the deposit URL that you created in Step 2. After completing the deposit form, the hosted payment form is displayed to complete the deposit.