post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/deleteSuitability
This method is used to delete investment suitability for an account(createAccount).
Request Parameters
Parameter | Required | type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
accountId | yes | integer | Account 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/deleteSuitability
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A23454
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
accountDetails | string | Success Message |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"accountDetails": "Account deleted successfully!"
}