post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getExternalFundMoveInfo
This method is used to get all information for an external fund move. The Account ID (createAccount) and Reference Number (included in the externalFundMove response) must be specified as a request parameter to get all external fund move information.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
accountId | yes | string | Account ID or Issuer ID that is generated by the API when an Account(createAccount) or Issuer(createIssuer) is created |
RefNum | yes | string | Reference Number that is generated by the API once an external fund move is initiated (externalFundMove) |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getExternalFundMoveInfo
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d RefNum=685427152
-d accountId=A12345
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
investorExternalAccountDetails | string[] | Returns the external account details as an array |
ACHDetails | string[] | Returns the ACH details as an array |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"investorExternalAccountDetails": {
"fundStatus": "Returned",
"error": "101 - Settled Trade"
},
"ACHDetails": {
"accountId": "A3040386",
"fundStatus": "Returned",
"tradeId": "1001577983",
"createdDate": "2024-07-31 17:18:59",
"accountName": "John Smith's Account",
"clientName": "example client",
"issueName": "example offering"
}
}