post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/deleteAccount
This method is used to delete an account that is created for an individual party or entity party.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
accountId | yes | string | Account ID that is generated by the API when an account is created(createAccount) |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/deleteAccount
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A34554
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
accountDetails | string | Success Message |
Response Parameters
{
"statusCode": "101",
"statusDesc": "Ok",
"accountDetails": "Account deleted successfully!"
}