Delete an Address Book Contact ​
DELETE /winapi/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 = 'https://passwordstate/winapi/addressbook/?AddressBookID<value>'
Invoke-Restmethod -Method Delete -Uri $PasswordstateURL -UseDefaultCredentialsJson
# Response
HTTP/1.1 204 No Content