Funding Endpoints
Get ACH instruction status
Get the status of an ACH instruction. The status can be one of the following:
PROCESSED
REJECTED
DELETED
PENDING
PENDING_VERIFICATION
GET
/
funding
/
linking
/
{account_id}
/
{ach_id}
Header
Path
curl --request GET \
--url https://sandbox.featherhq.com/funding/linking/{account_id}/{ach_id} \
--header 'x-api-key: <x-api-key>'
{
"account_id": "<string>",
"ach_id": "<string>",
"ach_instruction_name": "<string>",
"requires_manual_verification": true,
"status": "<string>"
}
Headers
x-api-key
string
requiredAPI Key for authentication
Path Parameters
account_id
string
requiredach_id
string
requiredResponse
200 - application/json
account_id
string
Account ID linked to the ACH instruction
ach_id
string
ACH instruction ID
ach_instruction_name
string
Name of the ACH instruction
requires_manual_verification
boolean
Indicates if manual verification is required
status
string
Current status of the ACH instruction
curl --request GET \
--url https://sandbox.featherhq.com/funding/linking/{account_id}/{ach_id} \
--header 'x-api-key: <x-api-key>'
{
"account_id": "<string>",
"ach_id": "<string>",
"ach_instruction_name": "<string>",
"requires_manual_verification": true,
"status": "<string>"
}