Send Money
Overview
A send money transaction resource is used for sending funds directly from your Metaprise account to a beneficiary's Metaprise account. The beneficiary's Metaprise account is identified by its account number.
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 Send Money transaction events.
Create a Send Money Transaction
-
Create a send money transaction in the dashboard
-
Click the send money button
-
Create a new recipients and fill the nickname and email the recipient sign up
-
Choose a recipient you want to send money, fill in the amount and referencce
-
Confirm the transaction details
-
Completed
-
-
Use API to create a send money transaction
- Using Create a Recipient
- Using Create a Transaction
Create a recepient
curl --request POST \
--url 'https://api-demo.metaprise.com/api/v1/wallet_transfers/create' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ0b20iLCJyb2xlcyI6WyJ1c2VyIl0sImlhdCI6MTQ4ODQxNTI1NywiZXhwIjoxNDg4NDE1MjY3fQ.UHqau03y5kEk5lFbTp7J4a-U6LXsfxIVNEsux85hj-Q' \
--data '{
"beneficiary": {
"account_name": "string",
"account_number": "4521908077956712"
},
"reason": "travel",
"reference": "string",
"request_id": "CREATE-79d22199-bd62-40d2-85c9-8dd9bbd29988",
"transfer_amount": "234.1",
"transfer_currency": "USD"
}'
Create a transaction
curl --request POST \
--url 'https://api-demo.metaprise.com/api/v1/wallet_transfers/create' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ0b20iLCJyb2xlcyI6WyJ1c2VyIl0sImlhdCI6MTQ4ODQxNTI1NywiZXhwIjoxNDg4NDE1MjY3fQ.UHqau03y5kEk5lFbTp7J4a-U6LXsfxIVNEsux85hj-Q' \
--data '{
"beneficiary": {
"account_name": "string",
"account_number": "4521908077956712"
},
"reason": "travel",
"reference": "string",
"request_id": "CREATE-79d22199-bd62-40d2-85c9-8dd9bbd29988",
"transfer_amount": "234.1",
"transfer_currency": "USD"
}'
Updated 2 months ago