Transfer

Endpoint: BASE_URL/baas/transfer-internal

This transfer is made between users of the same Galileo program. When using this endpoint, the following parameters must be sent:

  • fromAccountId: account from where the funds to be sent will be taken.

  • amount: amount of money to be transferred.

  • toAccountId: account to which you want to send the funds.

Request example

{
    "fromAccountId":"999900843213",
    "amount": "4.99",
    "toAccountId": "999900829618"
}

If the request responds successfully, the transfer is complete. If not, it will be returned because the transfer could not be made.

Linker example response:

{
    "statusCode": 200
}

Last updated