post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/requestCustodialAgreement
This method is used to send the North Capital Private Securities custodial account agreement to the primary party that is linked to the Account ID that is requesting the custodial account.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
offeringId | yes | string | TransactAPI Offering ID that is generated by the API once an offering is created (createOffering) |
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/requestCustodialAccount
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d offeringId=someofferingid
-d accountId=A12345
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
orderDetails | string | orderDetails of the matched requestCustodialAgreement |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"orderDetails": {
"Account ID": "A2624258",
"Request ID": "8"
}
}