post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getCustodyFundMove
Get information about a custody fund move intent (deposit)
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 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
Root Response
Field | Type | Description |
---|---|---|
statusCode | String | API response code |
statusDesc | String | Human-readable status description |
custodyTransaction | Object | Transaction details object |
custodyTransaction Object
Field | Type | Description |
---|---|---|
accountId | String | Internal account identifier |
bankName | String | Bank name (nullable) |
amount | String | Transaction amount with decimal precision |
accountNumber | String | Bank account number |
routingNumber | String | Bank routing number |
accountName | String | Account holder name |
referenceNumber | String | Unique transaction reference |
description | String | Transaction description |
approvalStatus | String | Internal approval status for transaction processing authorization |
status | String | Current state of the ACH transaction in the payment processing lifecycle |
routingNumberStatus | String | Routing number validation status |
errors | String | Error messages (empty if none) |
createdDate | String | Transaction creation timestamp (YYYY-MM-DD HH:mm:ss) |
updatedDate | String | Last modification timestamp (YYYY-MM-DD HH:mm:ss) |
approvalStatus Values
pending
- Awaiting approval reviewdeclined
- Rejected for processingapproved
- Authorized for processing
Note: Approval decisions are processed daily at 4:00 PM Mountain Time via batch operation.
status Values
pending
- Transaction created but not yet submittedsubmitted
- Sent to ACH network for processingsettled
- Successfully completed and funds transferredreturned
- Rejected by receiving bankvoided
- Cancelled before settlementdeclined
- Rejected during processing
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"custodyTransaction": {
"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"
}
}