| 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) |
| amount | yes | string | The amount to be debited from the external account. The amount is limited based on client risk assessment and is capped at $100,000.00 |
| description | no | string | Description of the fund move |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/createCustodyFundMove
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d accountId=985742
-d amount=10000.50
-d description=Example Transaction
-d createdIpAddress=10.0.0.9
| Parameter | Type | Description |
|---|
| statusCode | string | API Status Code |
| statusDesc | string | API Status Description |
| custodyTransaction | string | Returns the fund move details as an array |
| custodyTransaction | Description |
|---|
| accountId | Account fund move was made against |
| bankName | Will be null value with Plaid integration |
| amount | Dollar amount of fund move |
| accountNumber | Will be null value with Plaid integration |
| referenceNumber | Number generated to identify the specific transaction |
| accountName | Will be null value with Plaid integration |
| routingNumber | Bank routing number for linked external account |
| description | Optional field to enter notes or specifics of transaction |
| approvalStatus | Status of the custody account: will be Approved or Pending |
| status | Status of the fund movement: will be Pending |
| routingNumberStatus | With Plaid integration, status will be: Verified |
| errors | Any errors associated with fund move |
| createdDate | Date and timestamp for the initiation of the fund move |
| updatedDate | Date and timestamp for any fund move update |
{
"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"
}
}