Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dintero.com/llms.txt

Use this file to discover all available pages before exploring further.

Using WooCommerce, Shopify, Magento, or another e-commerce platform?

You don’t need to build a custom integration. Go to Plugins & Integrations for setup instructions.

How it works

Every Dintero integration follows the same pattern:
1

Get credentials

Create an API client in Backoffice and save your Client ID and Client Secret.
2

Authenticate

Exchange credentials for a bearer token.
curl -X POST https://api.dintero.com/v1/accounts/T12345678/auth/token \
  -u "CLIENT_ID:CLIENT_SECRET" \
  -H "Content-Type: application/json" \
  -d '{"grant_type": "client_credentials", "audience": "https://api.dintero.com/v1/accounts/T12345678"}'
3

Create a session

Send your order details to Dintero and get back a checkout URL.
4

Handle the result

Dintero calls your server with the transaction result. Capture, refund, or void as needed.
Ready to go? Jump to the Quickstart for the full walkthrough.

Resources