Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API Client ID |
developerAPIKey | yes | string | Transact API 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 ) |
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
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
External Fund move details | string | Returns the fund move details as an array |
Reponse ----------------------------------------------- { "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" } ] }