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

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
accountIdyesstringAccount ID or Issuer ID that is generated by the API when an Account(createAccount) or Issuer(createIssuer) is created
RefNumyesintegerReference 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

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
externalFundMove detailsstringReturns 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"
        }
    ]
}

Test it Yourself!

Language
Click Try It! to start a request and see the response here!