post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getCustodyFundsDisbursements
This method is used to get the current Fund Move Status for Custody fund moves.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
filter | no | string | filter by parameters such as {"requestId":"",accountId":""} |
Sample Request
curl -k -X POST https://tapi-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getCustodyFundsDisbursements
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
custodyTransaction | string |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"custodyFundDisbursements": [
{
"requestId": "baca4059-e3af-43a4-a86b-4838c91be975",
"accountId": "A98780730",
"amount": "20.20",
"type": "wire_domestic",
"bankId": "122100024",
"bankAccountId": "12345688",
"additionalDetails": "",
"status": "pending",
"createdDate": "2024-11-26 20:51:40",
"updatedDate": "2024-11-26 20:52:43"
},
{
"requestId": "953cfa35-37c2-4360-b2ed-78db9fb8b331",
"accountId": "A98780730",
"amount": "20.20",
"type": "ach",
"bankId": "",
"bankAccountId": "",
"additionalDetails": "",
"status": "pending",
"createdDate": "2024-11-26 17:23:05",
"updatedDate": "2024-11-26 17:23:05"
},
{
"requestId": "002717a3-a612-4e94-b517-3f4dbd79b523",
"accountId": "A98780730",
"amount": "20.20",
"type": "ach",
"bankId": "",
"bankAccountId": "",
"additionalDetails": "test",
"status": "pending",
"createdDate": "2024-11-26 15:45:51",
"updatedDate": "2024-11-26 15:45:51"
}
],
"pagination": {
"totalRecords": 3,
"startIndex": 0,
"endIndex": 2
}
}