POST
/
api
/
payments
/
connectors
/
{connector}
/
transfers
curl --request POST \
  --url http://localhost:55001/api/payments/connectors/{connector}/transfers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 100,
  "asset": "USD",
  "destination": "acct_1Gqj58KZcSIg2N2q",
  "source": "acct_1Gqj58KZcSIg2N2q"
}'
{
  "id": "<string>"
}

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

Body

application/json

Response

200
application/json

OK

The response is of type object.