Transactions / Create
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.
Parameters
Name | Description | Value Type | Required |
---|---|---|---|
amount | Dollar amount of the EvoPay transaction. | decimal | Required |
type | deposit , withdrawal , or transfer | String | Required |
recipient_id | office_id of transfer recipient | integer | Required if type is "transfer" |
notes | Searchable notes | String | Optional |
Examples
Request | Response |
---|---|
/v9/accounts/6/transactions | |
Deposit funds into your EvoPay account from the connected bank account. { "transactions":[ { "amount":5000, "type":"deposit", "notes":"Deposit to prepare for playoff purchasing." } ] } | |
Withdrawal funds from your EvoPay account to the connected bank account { "transactions":[ { "amount":500, "type":"withdrawal", "notes":"Moving funds to bank account." } ] } | |
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. { "transactions":[ { "amount":850, "recipient_id":123, "type":"transfer", "notes":"Thanks for loaning me money for those seats." } ] } |