Extracting type of Activity from Marketo.
I am extracting ActivityRecord with filter of ActivityType.
I am extracting following activity types.
RemoveFromList, CreateTask , ConvetLead , DeleteLead , LeadAssigned.
For these activity types data is available in Marketo account however when I am extracting it I am getting 0 records.
Following SOAP request I am passing along with authentication header info to getLeadChanges() API
<paramsGetLeadChanges xmlns="marketo.com/mktows/">
<startPosition xmlns="">
<activityCreatedAt>0001-01-01T00:00:00.000+05:30</activityCreatedAt>
</startPosition>
<activityFilter xmlns="">
<includeTypes>
<activityType>ConvertLead</activityType>
</includeTypes>
</activityFilter>
</paramsGetLeadChanges>
If I enter NewLead as activity type then it extracts all the records of NewLead type.
Am I missing anything while passing SOAP request?
Thanks in Advance