Skip to main content

Step-by-step guide

Learn how to generate payment links automatically through the API.

In terms of implementation, the integration contains:

  • Server-side: one API request to create a payment intent.

  • WebHooks: at least one server-side endpoint, to receive information about the payment.

The payment flow is:

  1. The merchant server-side sends the payment information to the Dojo server to create a payment intent.

  2. The merchant server-side generates a payment link and sends it to the customer.

  3. The customer opens the payment link, and they are redirected to the Prebuilt Checkout Page. This is hosted by Dojo.

  4. The Prebuilt Checkout Page collects the customer's payment details and sends them to Dojo servers, then redirects the customer to the result page.

  5. The merchant server receives a WebHook notification when the customer uses the payment link.

Flow diagram: Flow Payment Links

sequenceDiagram
actor C as Customer
participant DC as dojo Client-side
participant MS as Merchant Server-side
participant DS as dojo Server-side

C->>MS: Requests Payment Link
MS->>DS: POST /payment-intents (paymentSource: "payment-links")
DS-->>MS: PaymentIntent object
MS-->>C: Sends Payment Link
C->>DC: Opens Payment Link
C->>DC: Enters payment details and clicks "Pay"
DS-->>DC: Redirects to the result page
DS->>MS: Sends webhooks

How to process a payment

Step-by-step guide:

  1. Create a payment link.

  2. Send the payment link to your customer.

  3. Handle post-payment events.

  4. Test and go live.

Before you start

Before you begin to integrate, make sure you have followed the Getting started guide and got your API keys. For the test environment, use your secret key with the prefix sk_sandbox_.

To create a payment link, first call a server-side endpoint to create a payment intent. The following parameters are required:

  • amount: This includes the currency and value, in minor units, for example, "1000" for 10.00 GBP.

  • reference: Your unique reference for the payment intent.

  • isNotOnlineCheckout: Set to true to start accepting payment links without an online checkout integration. Defaults to false if omitted. Requires a verified partner integration for use in production.

Here's an example of how to create a payment intent for 10 GBP on your server-side:

server.py
@app.route('/', methods=['GET', 'POST'])
def hello():
print(request.get_json()) # parse as JSON

conn = http.client.HTTPSConnection("api.dojo.tech")
payload = json.dumps({
"amount": {
"value": 1000,
"currencyCode": "GBP"
},
"reference": "Order 245",
})
headers = {
'Content-Type': "application/json",
'Version': "2024-02-05",
'Authorization': "Basic sk_sandbox_c8oLGaI__msxsXbpBDpdtwJEz_eIhfQoKHmedqgZPCdBx59zpKZLSk8OPLT0cZolbeuYJSBvzDVVsYvtpo5RkQ" # <-- Change to your secret key
}
conn.request("POST", "/payment-intents/", payload, headers)
res = conn.getresponse()
data = res.read()
last_id = json.loads(data)["id"]
url = 'https://pay.dojo.tech/checkout/' + last_id
return redirect(url)

See the API reference for a complete list of parameters that can be used for payment intent creation.

After receiving the request, Dojo creates a payment intent and returns its unique ID:

{
"id": "pi_sandbox_RBMHTJ4fIkmSppDILZVCGw",
...
}

Return this ID to the client-side and use it to create a link in the following format:

https://pay.dojo.tech/checkout/{{id}}

Send the link to your customer through chat or email. When the customer opens the link, they'll redirect to Dojo Prebuilt Checkout Page. After the customer fills in their payment information, Dojo processes the payment and redirects the customer to the success page.

Step 3. Handle post-payment events

Use webhooks to receive information about the payment. We send a payment_intent.status_updated event when the payment is completed (captured, refunded, released, reversed, canceled).

Here's an example of how to subscribe to the payment_intent.status_updated event:

# The sandbox API key passed in 'authorization' is public.
# Don't submit any personally identifiable information in any requests made with this key.
# Sign in to developer.dojo.tech to create your own private sandbox key and use that instead
# for secure testing.

curl -v --request POST \
--url https://api.dojo.tech/webhooks \
--header 'Authorization: Basic sk_sandbox_c8oLGaI__msxsXbpBDpdtwJEz_eIhfQoKHmedqgZPCdBx59zpKZLSk8OPLT0cZolbeuYJSBvzDVVsYvtpo5RkQ' \
--header 'Content-Type: application/json' \
--header 'Version: 2024-02-05' \
--data '{
"events": ["payment_intent.status_updated"],
"url": "https://example.com/incoming-events"
}'

If you haven't set up webhooks yet, review our webhooks guide.

Step 4. Test and go live

Before going live, test your integration using the test card numbers:

Card NameCard numberExpiry DateCVV3D securityStatus
Test CardholderCopy
5200 0000 0000 1005Copy
12/29Copy
020Copy
NoSuccessful
Test CardholderCopy
5200 0000 0000 1096Copy
12/29Copy
020Copy
2.0Successful
Test CardholderCopy
4456 5300 0000 1013Copy
12/29Copy
341Copy
NoDecline

When you are ready to go live, switch your secret key to production one with the prefix sk_prod_.


Next steps