post
https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getCustodyAccountRequest
Request Paramaters
| 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) |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getCustodyAccountRequest
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A12716Response Parameters
| 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 |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"custodialAccountDetails": [
{
"accountId": "A43969",
"custAccRequestID": "ttsUaKo",
"custAccStatus": "Pending",
"createdDate": "2018-10-06 07:24:52",
"approvalStatus": "Pending"
}
]
}
