Skip to main content

Listing merchants

Get a list of all merchant accounts under your partner account.
Request
curl https://api.dintero.com/v1/accounts/T11200000/management/accounts \
  -H "Authorization: Bearer <TOKEN>"
Response
[
    {
        "account_id": "T11200001",
        "partner_id": "T112",
        "active": true,
        "livemode": false,
        "company": {
            "business_name": "Acme Store AS",
            "organization_number": "987654321",
            "website": "https://acme-store.example.com"
        },
        "applicant": {
            "first_name": "Jane",
            "last_name": "Doe",
            "email": "jane@acme-store.example.com",
            "signup_reference": "abc-123"
        },
        "paging_token": "pt1"
    }
]

Pagination

The response returns up to 10 accounts by default. Use limit (1—100) and starting_after to paginate through results. Each account in the response includes a paging_token value that you pass as starting_after to fetch the next page.
Request
curl "https://api.dintero.com/v1/accounts/T11200000/management/accounts?limit=50&starting_after=pt1" \
  -H "Authorization: Bearer <TOKEN>"

Filtering

You can filter accounts by payment connection, country, or service status using query parameters.
Request
curl "https://api.dintero.com/v1/accounts/T11200000/management/accounts?country=NO&services=checkout.status.enabled" \
  -H "Authorization: Bearer <TOKEN>"
See the merchant account collection API reference for all available filters and response fields.
Last modified on June 1, 2026