Deletes a contact by ID
This method can be used to delete a contact from your account.
SOAP action: http://apiconnector.com/v2/ApiService/DeleteContact
Input and output parameters
The input and output parameters for this method are:
Input parameters
- Contact Id - required; integer
Output parameters
None
Example
using (var client = new ApiServiceClient())
{
client.ClientCredentials.UserName.UserName = "username";
client.ClientCredentials.UserName.Password = "password";
var contactId = 1;
client.DeleteContact(contactId);
}