DeleteTransactionalDataByKey

Deletes transactional data for a contact in a collection by key

This method deletes a piece of transactional data held for a contact by its key.

SOAP action: http://apiconnector.com/v2/ApiService/DeleteTransactionalDataByKey

📘

Input and output parameters

The input and output parameters for this method are:

Input parameters

  • DataCollection - required; string
  • Key - required; string

Output parameters
None

Example

using (var client = new ApiServiceClient())
{
	client.ClientCredentials.UserName.UserName = "username";
	client.ClientCredentials.UserName.Password = "password";

	var collectionName = "TestCollectionName";
	var key = "P00000001";
	client.DeleteTransactionalDataByKey(dataCollection, key);
}