Endpoint Parameters

  • Request parameters

    Name Type Origin Description
    Amount Decimal Body The amount
    Currency String Body The currency
    FromAccountKey AccountKey Body Source account
    ToAccountKey AccountKey Body Destination account
    WithdrawalReasonId Int Body Withdrawal Reason Id
  • Response Parameters

    View Response Codes
    Name Type Description
    Commission Decimal Commission charged to transfer amount
    FromAccountAmount Decimal Amount from the sender account
    FromAccountCurrency String Currency from the sender account
    ToAccountAmount Decimal Amount to the receiver account
    ToAccountCurrency String Currency to the receiver account
  • Request Example

    Request URL
    POST cs/v2/cashmanagement/interaccounttransfers
    Request Body
    {
      "Amount": 1000.0,
      "Currency": "JPY",
      "FromAccountKey": "-gh-xomNFSNUYdRL0KrPpg==",
      "IsAutoTrading": false,
      "ToAccountKey": "y3kFQWkqJYMgOgaxcoqshA=="
    }
    
  • Response Example

    Response body
    {
      "Commission": 0.0,
      "FromAccountAmount": 9.0776625,
      "FromAccountCurrency": "USD",
      "ToAccountAmount": 1000.0,
      "ToAccountCurrency": "JPY"
    }