Skip to main content
POST
/
api
/
payments
/
connectors
/
{connector}
/
transfers
Transfer funds between Connector accounts
curl --request POST \
  --url http://localhost/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
amount
integer
required
Required range: x >= 0
Example:

100

asset
string
required
Example:

"USD"

destination
string
required
Example:

"acct_1Gqj58KZcSIg2N2q"

source
string
Example:

"acct_1Gqj58KZcSIg2N2q"

Response

OK

id
string
I