Depending on applicable regulations or business limitations, specific API requests may not be available for your use.
Get an ACH Pull Deposit
This request returns a single ACH transfer deposit that is set to pull funds into a brokerage account.
Request URL
Syntax | GET /restapi/accounts/{accountnumber}/cashtransfers/achdeposits/{eftoid} |
---|---|
Example URL | https://api.uat.foliofn.com/restapi/accounts/RA1234ABCD/cashtransfers/achdeposits/893535353535353 |
Response Data Fields
Field | Description |
---|---|
accountNumber | The brokerage account number that holds the specific bank link and associated transfer request. |
amount | The amount of the ACH transfer request. |
banklinkOid | The unique identifier of the bank link within the account. |
direction | The direction of the ACH transfer request. “T” is a deposit to the brokerage account, “F” is a withdrawal from the brokerage account. |
eftOid | The unique identifier of the ACH transfer request. |
requestDate | The date the ACH transfer is to be initiated. Follows ISO-8601 formatted date. |
status | The current status of the ACH transfer request. See ACH Pull Deposit Status for available codes. |
statusTimeStamp | The date and timestamp of the last status change. Follows ISO-8601 formatted date. |
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/achdeposits/893535353535353
Content-Type: application/json
Transfer-Encoding: chunked
Date: Tue, 25 Feb 2014 22:35:28 GMT
{
"accountNumber" : "RA1234ABCD",
"amount" : "123.4499969482421875",
"banklinkOid" : "893514166969696",
"direction" : "T",
"eftOid" : "893535353535353",
"requestDate" : "2014-02-27T00:00:00.000-05:00",
"status" : "P",
"statusTimeStamp" : "2014-02-25T17:35:27.053-05:00"
}
Change Log
07/22/2016
- Updated text.
04/29/2016
- Added Change Log