Internal Foreign Transfer

Allows you to transfer money between accounts in different countries while maintaining the original currency.

Foreign Transfer

POST {{api_environment_url}}/api/internal-transfer

Headers

Request Body

Example

curl --location \
--request POST '{{api_environment_url}}/api/internal-transfer' \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--data '{
    "externalId": "111333",
    "country": "ARG",
    "currency": "USD",
    "amount": 100,
    "transactionType": "InternalForeignTransfer",
    "client": {
        "type": "Client",
        "from": {
            "accountNumber": "032.840.00000005"
        },
        "to": {
            "accountNumber": "068.840.00000001"
        }
    }
}'

Last updated