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) |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getCustodyAccountRequest
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A12716
Parameter | Type | Description |
---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
custodialAccountDetails | string | An array of custodial account includes all information of the custodial account |
custodialAccountDetails | Description |
---|
accountId | Account ID that request was made against |
custAccStatus | The status of the Custody Account request. Pending, Approved, Rejected, New Info Added, Need More Info |
accountStatus | This status will remain Pending |
custAccRequestID | Identifying string unique to this request |
reasonForStatus | Optional field for further details |
restrictedStatus | Yes, No |
createdDate | Date and timestamp of request |
approvalStatus | The RR approval status of the account as indicated in TransactAPI |
{
"statusCode": "101",
"statusDesc": "Ok",
"custodialAccountDetails": [
{
"accountId": "A3177046",
"custAccStatus": "Pending",
"accountStatus": "Pending",
"custAccRequestID": "ROE6ovs",
"restrictedStatus": "No",
"reasonForStatus": null,
"createdDate": "2025-01-03 21:07:24",
"approvalStatus": "Approved"
}
]
}