Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API Client ID |
developerAPIKey | yes | string | Transact API Developer Key |
accountId | yes | string | Account ID that is generated by the API once an account is created (createAccount). |
createdIpAddress | yes | string | IP Address associated with the requestCustodialAccount method call. |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/requestCustodialAccount -d clientID=someclientid -d developerAPIKey=somedeveloperkey -d accountId=A12345 -d createdIpAddress=10.0.0.1
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 |
{ "statusCode": "101", "statusDesc": "Ok", "custodialAccountDetails": [ { "accountId": "A43969", "custAccRequestID": "ttsUaKo", "custAccStatus": "Pending", "createdDate": "2018-10-06 07:24:52", "approvalStatus": "Pending" } ] }