post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateCustodyFundMove
This method is used to update the pending ACH transaction to void. This can only be used on a transaction that is in a "Pending" status. "Pending" transactions are submitted for processing at 6:00 PM Eastern Time every business day.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
referenceNumber | yes | string | Reference Number that is generated by the API once an fund custodial Account is initiated ( createCustodyFundMove ) |
status | yes | string | Set value to "void" to update the pending ACH transaction. This can only be used on a transaction that is in a "Pending" status. "Pending" transactions are submitted for processing at 6:00 PM Eastern Time every business day. |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateCustodyFundMove
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d referenceNumber=313889266
-d status=void
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
custodyTransaction | string | Custody transaction details |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"custodyTransaction": {
"accountId": "A3110006",
"bankName": null,
"amount": "7.000000",
"accountNumber": "",
"routingNumber": "011001726",
"accountName": "",
"referenceNumber": "339846456",
"description": "",
"approvalStatus": "approved",
"status": "void",
"routingNumberStatus": "Verified",
"errors": "",
"createdDate": "2024-12-10 22:49:06",
"updatedDate": "2024-12-10 23:20:06"
}
}