$ curl -u $API_KEY_ID:$API_KEY_VALUE https://api.grasshopper.bank/ach \
-H 'Content-Type: application/json' \
-d '{
"account_id": "acct_1234567890",
"amount": "100.00",
"counterparty_id": "cp_0987654321",
"direction": "credit",
"sec_code": "ccd"
}'
$ curl -u $API_KEY_ID:$API_KEY_VALUE https://api.grasshopper.bank/ach \
-H 'Content-Type: application/json' \
-d '{
"amount": "100.00",
"from_account_id": "acct_1234567890",
"to_account_id": "acct_0987654321"
}'
$ curl https://api.grasshopper.bank/account/acct_1029384756/transaction \
-u "$API_KEY_ID:$API_KEY_VALUE"
$ curl -u $API_KEY_ID:$API_KEY_VALUE https://api.grasshopper.bank/account/acct_1029384756
$ curl -u $API_KEY_ID:$API_KEY_VALUE https://api.grasshopper.bank/billpay/payment \
-H 'Content-Type: application/json' \
-d '{
"account_id": "acct_1234567890",
"amount": "20.00",
"billpay_counterparty_id": "bpcp_0987654321",
"person_id": "owner_1234567890"
}'