post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/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
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
custAccRequestID | yes | string | Request ID Generated by the requestCustodialAccount method |
custAccRequestStatus | yes | string | Custodial Account status: Pending | New Info Added |
notes | yes | string | Notes |
updatedIpAddress | yse | string | IP 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
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
custodialAccountDetails | string | An 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"
}
]
}