getCustodyAccountRequest

This method is used to get the status of a custodial account request.

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/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

custodialAccountDetailsDescription
accountIdAccount ID that request was made against
custAccStatusPending, Approved, Rejected
accountStatusOpen, Closed, Pending
custAccRequestIDIdentifying string unique to this request
restrictedStatusYes, No
reasonForStatusOptional field for further details
createdDateDate and timestamp of request
approvalStatusApproved, Pending, Rejected

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!