Funding Endpoints
Get money movement status
Get the status of a money movement. The status can be one of the following:
PROCESSED
REJECTED
DELETED
PENDING
PENDING_VERIFICATION
GET
/
funding
/
money_movement
/
{account_id}
/
{mm_id}
Header
Path
curl --request GET \
--url https://sandbox.featherhq.com/funding/money_movement/{account_id}/{mm_id} \
--header 'x-api-key: <x-api-key>'
{
"account_id": "<string>",
"ach_instruction_id": "<string>",
"amount": "<string>",
"direction": "<string>",
"mm_id": "<string>",
"status": "<string>"
}
Headers
x-api-key
string
requiredAPI Key for authentication
Path Parameters
account_id
string
requiredmm_id
string
requiredResponse
200 - application/json
account_id
string
Account ID linked to the money movement
ach_instruction_id
string
ACH instruction ID for the movement
amount
string
Amount for the money movement
direction
string
Direction of the money movement (Deposit or Withdrawal)
mm_id
string
Money movement ID
status
string
Current status of the money movement
curl --request GET \
--url https://sandbox.featherhq.com/funding/money_movement/{account_id}/{mm_id} \
--header 'x-api-key: <x-api-key>'
{
"account_id": "<string>",
"ach_instruction_id": "<string>",
"amount": "<string>",
"direction": "<string>",
"mm_id": "<string>",
"status": "<string>"
}