Depending on applicable regulations or business limitations, specific API requests may not be available for your use.
Get an External Account Transfer
This request allows retrieving an existing transfer request, for a specified account number.
Request URL
Syntax |
GET /restapi/accounts/{accountnumber}/acatin/{acatid} |
Example URL |
https://api.uat.foliofn.com/restapi/accounts/RB18938005/acatin/112UVFQG |
Response Data Fields
Field |
Type |
Description |
Required |
acatId |
String |
A unique ID for the ACAT request as generated by REST API service. |
Yes |
comment |
String |
The explanation of the current status. |
Yes |
contraAccountNumber |
String |
The Firm account number. |
Yes |
creationTS |
String |
The timestamp of creation. |
Yes |
dtcNumber |
String |
The DTC Contra number. |
Yes |
lastModifiedTS |
String |
The date of last modification. |
Yes |
Status |
String |
The current status of the request. |
Yes |
Response Example
http://api.local.foliofn.com:6880/restapi/accounts/RB18938005/acatin/112UVFQG HTTP/1.1
Request Example
HTTP/1.1 200 OK
Date: XXX
Content-Type: application/json
Content-Language: en
{
"acatid" : "112UVFQG",
"comment" : "test example",
"contraAccountNumber" : "12x-345678",
"creationTS" : "2017-04-03T16:07:24.406-04:00",
"dtcNumber" : "0443",
"lastModifiedTS" : "2017-04-18T00:00:00.000-04:00",
"status" : "Transfer Closed - No Action"
}
Error Codes
HTTP Code Status |
Field |
Code |
Message |
Description |
403 |
- |
- |
- |
The specified user is not allowed to use this request. |
404 |
acatId |
acat.not.found |
- |
No ACAT found for the specified account number and Id. |
Change Log
06/09/2017
- Add creation and last modified timestamp to response
12/02/2015
- New documentation