Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

NameCreate
DescriptionCreate an EvoPay Transaction
TypePOST
URL/v9/accounts/:office_id/transactions

Long Description

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 
{
   "transactions":[
      {
         "amount":5,
         "recipient_id":2,
         "type":"transfer"
      }
   ]
}

 

 

{
   "transactions":[
      {
         "amount":5,
         "credit_card_id":32,
         "type":"deposit"
      }
   ]
}

 

See Transactions / Show.

 

  • No labels