Gets transactional data in a collection at account level
This method gets transactional data in a specified collection at an account level (transactional data that isn't associated with a contact).
SOAP action: http://apiconnector.com/v2/ApiService/GetAccountScopedTransactionalData
Input and output parameters
The input and output parameters for this method are:
Input parameters
- DataCollection - required; string
- Select - integer
- Skip - integer
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 collectionName = "TestCollectionName";
var transactionalData = client.GetAccountScopedTransactionalData(collectionName);
}