Deposit From Bank Account

POST https://api.sfox.com/v1/user/bank/deposit

Initiate an ACH transfer from your linked bank account to your sFOX account.

Body Parameters

Name
Type
Description

amount required

number

The amount of USD to send to your sFOX account.

Responses

200
{
  "tx_status": 0000,
  "success": true
}

Example Requests

curl -H 'Authorization: Bearer <API_TOKEN>' \
-H 'Content-Type: application/json' \
-X POST \
--data '{"amount": 100}' \
'https://api.sfox.com/v1/user/bank/deposit'

Last updated