getCustodyFundMove

This method is used to get the current Fund Move Status for Custody fund moves.

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
accountIdyesstringAccount ID that is generated by the API once an account is created (createAccount)
referenceNumberyesstringReference Number that is generated by the API once fund move is completed (fundCustodyAccount)

Sample Request

curl -k -X POST https://tapi-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getCustodyFundMove
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d accountId=accountId
-d referenceNumber=somereferencenumber

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
custodyTransactionstring

Sample Response

{
    "statusCode": "101",
    "statusDesc": "Ok",
    "custodyTransaction": {
        "accountId": "A12345",
        "bankName": null,
        "totalAmount": "51.250000",
        "accountNumber": "MTExMTIyMjIzMzMzMDAwMA==",
        "routingNumber": "MDExMDAxNzI2",
        "accountName": "Test Account",
        "referenceNumber": "520284442",
        "description": "investment in ABC",
        "status": "TEST ENTRY",
        "fundStatus": "Pending",
        "routingNumberStatus": "Verified",
        "errors": "",
        "createdDate": "2024-10-18 19:13:16",
        "updatedDate": "2024-10-18 19:13:16"
    }
}

Test it Yourself!

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