For the complete documentation index, see llms.txt. This page is also available as Markdown.

Listing connectors with Pay by Bank enabled programmatically

In this guide, we will list connectors programmatically.

You can list enabled connectors with support for the Pay by Bank product on your domain by making an API call, which is mostly useful when getting the available connector list programatically. See below on how to make such a call.

In order to obtain such connectors programmatically from your domain, you can query the whole list and filter the results for connectors which products contains "pay":

GET /connectors
{
  "connectors": [
    {
      "id": 40,
      "name": "Connecteur de test",
      "products": [
        "bank",
        "pay",
        "wealth"
      ],
      "payment_settings": {
        "available_validate_mechanisms": [
          "webauth"
        ],
        "beneficiary_types": [
          "iban"
        ],
        "execution_date_types": [
          "first_open_day",
          "instant",
          "deferred"
        ],
        "execution_frequencies": [
          "two-monthly",
          "semiannually",
          "weekly",
          "yearly",
          "four-monthly",
          "daily",
          "quarterly",
          "biannual",
          "bimonthly",
          "two-weekly",
          "monthly"
        ],
        "maximum_number_of_instructions": 10,
        "providing_payer_account": "optional"
      },
      
    },
    
  ]
}

Connectors supporting the Pay by Bank product will define a payment_settings object, which present Pay by Bank constraints and features for this specific connectors. For more information on the format of this object, e.g. if you only want connectors that support instant payments, see PaymentSettings.

Last updated

Was this helpful?