getCustodyFundMoves

This method is used to get the historical Fund Move Statuses for Custody fund moves.

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
accountIdnostringAccount ID that is generated by the API once an account is created (createAccount)

Sample Request

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

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
custodyTransactionsstring

custodyTransactionsDescription
accountIdAccount ID the request was made against
bankNameWill be null with Plaid integration
amountDollar amount of the fund move
accountNumberWill be null with Plaid integration
routingNumberBank routing number of the linked external account
accountNameWill be null with Plaid integration
referenceNumberNumber generated to identify the specific transaction
descriptionOptional field to enter notes or specifics of transaction
approvalStatusStatus of the custody account: will be Approved, Rejected, or Pending
statusStatus of the fund movement: will be Pending, Submitted, Settled, Void, Rejected, Returned
routingNumberStatusWith Plaid integration, status will be: Verified
errorsAny errors associated with fund move
createdDateDate and timestamp for the initiation of the fund move
updatedDateDate and timestamp for any fund move update

Sample Response

{
    "statusCode": "101",
    "statusDesc": "Ok",
    "custodyTransactions": [
        {
            "accountId": "A3110006",
            "bankName": null,
            "amount": "7.000000",
            "accountNumber": "",
            "routingNumber": "011001726",
            "accountName": "",
            "referenceNumber": "339846456",
            "description": "",
            "approvalStatus": "approved",
            "status": "Pending",
            "routingNumberStatus": "Verified",
            "errors": "",
            "createdDate": "2024-12-10 22:49:06",
            "updatedDate": "2024-12-10 22:49:06"
        },
        {
            "accountId": "A3110006",
            "bankName": null,
            "amount": "0.000000",
            "accountNumber": "",
            "routingNumber": "011001726",
            "accountName": "",
            "referenceNumber": "417184939",
            "description": "",
            "approvalStatus": "approved",
            "status": "Pending",
            "routingNumberStatus": "Verified",
            "errors": "",
            "createdDate": "2024-12-03 21:56:24",
            "updatedDate": "2024-12-03 21:56:24"
        },
        {
            "accountId": "A3110006",
            "bankName": null,
            "amount": "0.000000",
            "accountNumber": "",
            "routingNumber": "011001726",
            "accountName": "",
            "referenceNumber": "916079744",
            "description": "",
            "approvalStatus": "approved",
            "status": "Pending",
            "routingNumberStatus": "Verified",
            "errors": "",
            "createdDate": "2024-12-03 21:47:21",
            "updatedDate": "2024-12-03 21:47:21"
        },
        {
            "accountId": "A3110006",
            "bankName": null,
            "amount": "100.000000",
            "accountNumber": "MTExMTIyMjIzMzMzMDAwMA==",
            "routingNumber": "MDExMDAxNzI2",
            "accountName": "Chelsea Elting",
            "referenceNumber": "879361244",
            "description": "",
            "approvalStatus": "approved",
            "status": "SETTLED",
            "routingNumberStatus": "Verified",
            "errors": "",
            "createdDate": "2024-11-26 17:06:53",
            "updatedDate": "2024-12-03 21:09:38"
        },
        {
            "accountId": "A3110006",
            "bankName": null,
            "amount": "51.250000",
            "accountNumber": "MTExMTIyMjIzMzMzMDAwMA==",
            "routingNumber": "MDExMDAxNzI2",
            "accountName": "Chelsea Elting",
            "referenceNumber": "520284442",
            "description": "investment in ABC",
            "approvalStatus": "approved",
            "status": "Voided",
            "routingNumberStatus": "Verified",
            "errors": "",
            "createdDate": "2024-10-18 19:13:16",
            "updatedDate": "2024-11-04 23:21:17"
        }
    ],
    "pagination": {
        "totalRecords": 5,
        "startIndex": 0,
        "endIndex": 4
    }
}

Test it Yourself!

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