getCustodyAccountRequest

Request Paramaters

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/getCustodyAccountRequest
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A12716

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!