requestCustodialAccount

This method is used to request a custodial account. This is the first step to opening a custodial account through North Capital Private Securities.

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
accountIdyesstringAccount ID that is generated by the API once an account is created (createAccount)
createdIpAddressyesstringIP Address associated with the requestCustodialAccount method call

Sample Request

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

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
custodialAccountDetailsstringAn 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"
        }
    ]
}

Test it Yourself!

Language
Click Try It! to start a request and see the response here!