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

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
RefNumyesstringReference 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

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
externalFundMove DetailsstringReturns the fund move details as an array

Sample Response

{
    "statusCode": "101",
    "statusDesc": "Ok",
    "investorExternalAccountDetails": {
        "fundStatus": "Submitted",
        "error": null
    }
}

Test it Yourself!

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