Delete an Address Book Contact ​
DELETE /api/addressbook
Deleting an Address Book contact is possible by submitting a 'DELETE' HTTP Verb to the API. When a Address Book contact is deleted, you will be returned a Http Status Code of 204 - NoContent.
Powershell
# PowerShell Request
$PasswordstateURL = $PasswordstateBaseURL + '/api/addressbook/?AddressBookID<value>'
Invoke-Restmethod -Method Delete -Uri $PasswordstateURL -Header @{ "APIKey" = "$APIKey" }Json
# Response
HTTP/1.1 204 No Conten