Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Create an EvoPay transaction for your Brokerage.  This one action creates all three types - Deposits, Withdrawals, and Transfers.  Deposits and Withdrawals are simply between your office and the bank account you have configured in your settings.  Transfers are movement of EvoPay funds between your brokerage and another outside of an order. If your Brokerage has stored credit cards, you can use them to fund your EvoPay account.

Parameters

Name
Description
Value Type
Required
amountDollar amount of the EvoPay transaction.decimalRequired
typedeposit, withdrawal, or transferStringRequired
recipient_idoffice_id of transfer recipientintegerRequired if type is "transfer"
notesSearchable notesString

Optional

credit_card_idCredit card id for funding EvoPay.

integerOptional for "deposit"

 


Examples

RequestResponse
/v9/accounts/6/transactions 

Deposit funds into your EvoPay account from the connected bank account.

Code Block
languageruby
themeConfluence
{
   "transactions":[
      {
         "amount":5000,
         "type":
5,
"deposit",
         "notes":"Deposit to prepare for playoff 
"recipient_id":2
purchasing."
      }
   ]
}





See Transactions / Show.


Withdrawal funds from your EvoPay account to the connected bank account 

Code Block
languageruby
themeConfluence
{
   "transactions":[
      {
         "amount":500,
         "type":"
transfer
withdrawal",
         "notes":"Moving funds to bank account."
      }
   ]
}

 

 



See Transactions / Show.


Transfer EvoPay funds from your account to another account. The recipient account can be another Office belonging to your Brokerage or to an Office belonging to another Brokerage.

Code Block
languageruby
themeConfluence
{
   "transactions":[
      {
         "amount":
5
850,
         "
credit
recipient_
card_
id":
32
123,
         "type":"transfer",
         "notes":"
deposit
Thanks for loaning me money for those seats."
      }
   ]
}
 



See Transactions / Show.