Deletes an address book by ID
This method can be used to delete an address book in your account. It can't be used to delete the 'All Contacts' or 'Test' address books.
SOAP action: http://apiconnector.com/v2/ApiService/DeleteAddressBook
Input and output parameters
The input and output parameters for this method are:
Input parameters
- Id - required; integer
Output parameters
No output
Example
using (var client = new ApiServiceClient())
{
client.ClientCredentials.UserName.UserName = "username";
client.ClientCredentials.UserName.Password = "password";
var addressBookId = 1;
client.DeleteAddressBook(addressBookId);
}