Transfer

Overview

Your multi-currency global account issued against your Metaprise account maintains all the funds that are available for use. These funds are physically held by Metaprise and safeguarded securely with our network of global banking partners.

A global account's balance is organized by currency and balance type. A given currency’s available balance pools all the funds you have with Metaprise from different sources in that currency. For example, you might receive funds in AUD via different Global Accounts; all those funds will be settled into your global account and added to your AUD balance.

Our Transfer services readily integrate with your platform to give your customers control over the timing, denomination, and amount of funds converted. Powered by our FX Engine, we provide real-time access to wholesale interbank rates for users, allowing them to access a variety of FX products as required by business models. Whether it is to protect e-commerce platforms against adverse FX movements when holding FX rates for international buyers while they shop online, or to empower online travel agencies to offer “guaranteed 24 hours rates” when customers book their holiday packages, our FX solutions powered by the FX Engine is designed to meet these needs.


Before you begin

  • Sign up the Metaprise developer devhub platform to get your unique Client ID and API key.
  • Obtain your access token by authenticating to Metaprise using your unique Client ID and API key. You will need the access token to make API calls.
  • Set up webhooks to receive notifications on Transfer events.

Create a Transfer Transaction

  1. Create a transaction in the dashboard

    1. Click the transfer button

    2. Fill in the amount and currency you want to transfer, click next button

    3. Confirm the transaction and click transfer button

    4. Complete the transaction

  2. Use API to create a transfer transaction

    1. Using Create a Transfer to transfer funds between your wallet

Transfer fund bewteen global account

curl -X POST \
'https://api-demo.metaprise.com/api/v1/conversions/create' \
-H 'Authorization: Bearer <your_bearer_token>' \
-H 'Content-Type: application/json' \
-H 'cache-control: no-cache' \
-d '{
"buy_amount": "10000",
"buy_currency": "USD",
"client_data": "string",
"reason": "Settling invoices",
"request_id": "67f687fe-dcf4-4462-92fa-203353a01d9d96",
"sell_currency": "AUD",
"settlement_date": "2018-12-11",
"term_agreement": true
  }'