Depending on applicable regulations or business limitations, specific API requests may not be available for your use.
Get All ACH Push Withdrawals
This request returns a list of withdrawals set up for ACH push for a brokerage account.
Request URL
Syntax | GET /restapi/accounts/{accountnumber}/cashtransfers/achwithdrawals?daterange=6m |
---|---|
Example URL | https://api.uat.foliofn.com/restapi/accounts/RA1234ABCD/cashtransfers/achwithdrawals?daterange={daterange} |
Request Data Fields
Field | Description |
---|---|
daterange | It can be a date range. The format of a date should be “MM-dd-yyyy”. The start date and the end date should be separated by a comma, (“,”). For example, “daterange=11-01-2013,09-01-2014 ”. In additional to a customdate range, the value of daterange parameter could also be a code. See the other valid codes in Date Range Codes table below. |
Response Data Fields
See detail of the fields in Get an ACH Push Withdrawal endpoint.
Response Example
HTTP/1.1 200 OK
X-Powered-By: Servlet/2.5
Server: Sun GlassFish Enterprise Server v2.1.1
Location: https://api.uat.foliofn.com/restapi/accounts/RA1234ABCD/cashtransfers/achwithdrawals
Content-Type: application/json
Transfer-Encoding: chunked
Date: Tue, 25 Feb 2014 22:35:28 GMT
[
{
"accountNumber": "RA1234ABCD",
"amount": "123.45000",
"banklinkOid": "807807807807807",
"direction": "F",
"eftOid": "172172172172172172172172",
"requestDate": "2014-06-18T00:00:00.000-04:00",
"status": "RCVD"
}
]
Change Log
07/08/2016
- Added Request Data Fields
04/29/2016
- Added Change Log