post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getExternalFundMove
This method is used to get the details and current status for an external fund move. The Account ID and Reference Number must be specified as a request parameter to get the external fund move details and current status.
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 | integer | 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/getExternalFundMove
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d accountId=A85742
-d RefNum=685427152
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
externalFundMove details | string | Returns the fund move details as an array |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"investorExternalAccountDetails": [
{
"accountId": "A49501",
"tradeId": "529293396",
"offeringId": "81272",
"Bankname": "Testing",
"totalAmount": "1000.000000",
"Accountnumber": "MTIzNDU2Nzg5MDAwMA==",
"Routingnumber": "MTIxMDAwMzU4",
"RefNum": "367253829",
"Accountfullname": "John Smith",
"transactionstatus": "Approved",
"routingNumberStatus": "Verified",
"fundStatus": "Submitted",
"errors": null,
"createdDate": "2018-09-19 08:57:04"
}
]
}