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.

A Dintero merchant can have two types of reports: settlement reports and insight reports. Use the merchant access token from the merchant account API access flow to access reports on behalf of your merchants.

Settlement reports

Settlement reports are created when settlements are paid out by the payment processors (Dintero Payout, Vipps, Swedbank Pay, Bambora, Walley, and Klarna). See the payouts guide for when to expect a settlement after a transaction is captured.

List settlements

Each item in the response can contain multiple attachments, including the source files from the payment processor and the normalized Dintero settlement reports.
Request
curl https://api.dintero.com/v1/accounts/T11200001/settlements \
  -H "Authorization: Bearer <TOKEN>"
See the settlement reports API reference for filtering options and response details.

Get notified about new settlements

Subscribe to the settlement_add webhook event to get notified when a settlement is added.
Request
curl -X POST https://api.dintero.com/v1/accounts/T11200001/hooks/subscriptions \
  -H "Authorization: Bearer <TOKEN>" \
  -H "Content-Type: application/json" \
  -d '{
    "config": {
      "url": "https://example.com/webhooks/dintero"
    },
    "events": [
      "settlement_add"
    ]
  }'
See the create webhook subscription API reference for all available options.

Insight reports

Insight reports are created from transaction data and do not contain settlement information. They are generated automatically at scheduled intervals such as weekly or monthly.

Create a report configuration

Request
curl -X POST https://api.dintero.com/v1/accounts/T11200001/insight/reports/configuration \
  -H "Authorization: Bearer <TOKEN>" \
  -H "Content-Type: application/json" \
  -d '{
    "dataType": "checkout/transactions",
    "schedule": "weekly",
    "language": "en"
  }'
See the create insight report configuration API reference for all available options.

List reports

Request
curl https://api.dintero.com/v1/accounts/T11200001/reports/metadata \
  -H "Authorization: Bearer <TOKEN>"
See the list insight reports API reference for response details.
Last modified on June 1, 2026