post https://tapi-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getCustodyFundMoves
This method is used to get the historical Fund Move Statuses for Custody fund moves.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
accountId | yes | string | Account ID that is generated by the API once an account is created (createAccount) |
referenceNumber | yes | string | Reference 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/getCustodyFundMoves
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d accountId=accountId
-d referenceNumber=somereferencenumber
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
custodyTransactions | string |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"custodyTransactions": [
{
"accountId": "A12345",
"bankName": null,
"totalAmount": "51.250000",
"accountNumber": "MTExMTIyMjIzMzMzMDAwMA==",
"routingNumber": "MDExMDAxNzI2",
"accountName": "Account Name",
"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"
}
],
"pagination": {
"totalRecords": 1,
"startIndex": 0,
"endIndex": 0
}
}