Endpoint Parameters

  • Request parameters

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

    View Response Codes
    Name Type Description
    Commission Number Commission charged to transfer amount
    FromAccountAmount Number Amount from the sender account
    FromAccountCurrency String Currency from the sender account
    ToAccountAmount Number 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,
      "Currency": "JPY",
      "FromAccountKey": "-gh-xomNFSNUYdRL0KrPpg==",
      "ToAccountKey": "y3kFQWkqJYMgOgaxcoqshA=="
    }
    
  • Response Example

    Response body
    {
      "Commission": 0,
      "FromAccountAmount": 9.0776625,
      "FromAccountCurrency": "USD",
      "ToAccountAmount": 1000,
      "ToAccountCurrency": "JPY"
    }