updateCustodialAccountRequest

This method is used to update the status of an existing custodial account request (requestCustodialAccount) when new information has been added. You must update the status to "New Info Added" in order to initiate a re-review of the account.

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
custAccRequestIDyesstringRequest ID Generated by the requestCustodialAccount method
custAccRequestStatusyesstringCustodial Account status: Pending | New Info Added
notesyesstringNotes
updatedIpAddressysestringIP Address associated with the updateCustodialAccountRequest method call

Sample Request

curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateCustodialAccountRequest
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d custAccRequestID=hut67yt
-d custAccRequestStatus=New Info Added
-d notes=Need Info
-d updatedIpAddress=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!