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 | Pending, Approved, Rejected |
accountStatus | Open, Closed, Pending |
custAccRequestID | Identifying string unique to this request |
restrictedStatus | Yes, No |
reasonForStatus | Optional field for further details |
createdDate | Date and timestamp of request |
approvalStatus | Approved, Pending, Rejected |
{
"statusCode": "101",
"statusDesc": "Ok",
"custodialAccountDetails": [
{
"accountId": "A43969",
"custAccRequestID": "ttsUaKo",
"custAccStatus": "Pending",
"createdDate": "2018-10-06 07:24:52",
"approvalStatus": "Pending"
}
]
}