Funding Endpoints
Create money movement
Create a money movement. The money movement will be processed by the
system and the status of the money movement can be checked using the
/funding/money_movement/{account_id}/{mm_id}
endpoint.
POST
/
funding
/
money_movement
Header
Body
curl --request POST \
--url https://sandbox.featherhq.com/funding/money_movement \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '{
"account_id": "<string>",
"ach_id": "<string>",
"amount": "<string>",
"direction": "D"
}'
{
"message": "<string>",
"status_code": 123
}
Headers
x-api-key
string
requiredAPI Key for authentication
Body
application/json
account_id
string
requiredAccount ID for money movement
ach_id
string
requiredACH instruction ID for the movement
amount
string
requiredAmount for the money movement
direction
enum<string>
requiredDirection of money movement (Deposit or Withdrawal)
Available options:
D
, W
Response
200 - application/json
message
string
status_code
integer
curl --request POST \
--url https://sandbox.featherhq.com/funding/money_movement \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '{
"account_id": "<string>",
"ach_id": "<string>",
"amount": "<string>",
"direction": "D"
}'
{
"message": "<string>",
"status_code": 123
}