Gets a piece of transactional data by key
This method gets a single piece of transactional data by key.
SOAP action: http://apiconnector.com/v2/ApiService/GetTransactionalDataByKey
Input and output parameters
The input and output parameters for this method are:
Input parameters
- DataCollection - required; string
- Key - required; string
Output parameters
- GetTransactionalDataByKeyResult
- Key - string
- ContactIdentifier - string
- Json - string
Example
using (var client = new ApiServiceClient())
{
client.ClientCredentials.UserName.UserName = "username";
client.ClientCredentials.UserName.Password = "password";
var key = "P00000001";
var collectionName = "TestCollectionName";
var transactionalData = client.GetTransactionalDataByKey(collectionName, key);
}