GET
/
api
/
payments
/
connectors
/
{connector}
/
config
curl --request GET \
  --url http://localhost:55001/api/payments/connectors/{connector}/config \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "name": "My Stripe Account",
    "provider": "Stripe",
    "pollingPeriod": "60s",
    "apiKey": "XXX",
    "pageSize": 50
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

connector
enum<string>
required

The name of the connector.

Available options:
STRIPE,
DUMMY-PAY,
WISE,
MODULR,
CURRENCY-CLOUD,
BANKING-CIRCLE,
MANGOPAY,
MONEYCORP,
ATLAR,
ADYEN,
GENERIC

Response

200
application/json

OK

The response is of type object.