createCustodyAccountRequest

This method is used to request a custodial account. This is the first step to opening a custodial account through North Capital Private Securities. The Custody Agreement Attestation (createCustodyAgreementAttestation) must be affirmatively recorded before the request can be made.

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
accountIdyesstringAccount 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/createCustodyAccountRequest
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A12345

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
custodialAccountDetailsstringAn array of custodial account includes all information of the custodial account

custodialAccountDetailsTypeDescription
accountIdstringAccount ID generated by the API with createAccount
custAccStatusstringRequest status: Pending, Approved, Rejected, More Info Added
accountStatusstringStatus of the custody account: Pending, Open, Closed
custAccRequestIDstringCustodial Account Request Id
createdDatestringDate and timestamp of the request
approvalStatusstring

Sample Response

{
    "statusCode": "101",
    "statusDesc": "Ok",
    "custodialAccountDetails": [
        {
            "accountId": "A98780788",
            "custAccStatus": "Pending",
            "accountStatus": "Pending",
            "custAccRequestID": "yNHHDX2",
            "createdDate": "2024-11-22 16:22:10",
            "approvalStatus": "Pending"
        }
    ]
}

Test it Yourself!

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