0
votes

does anybody knows how to get (programmatically - C#) the list (and details) of campaigns on Microsoft CRM 3.0 (using the webservice CRM Service) ??

Any help or documentation link would be appreciated.

Thanks in advance.

1

1 Answers

0
votes

If somebody is interested, I found out how to get campaigns from Microsoft CRM 3.0 using the webservice. Here is the code.

        fetchFilter += @"<fetch mapping='logical'>";
        fetchFilter += @"<entity name='campaign'><all-attributes/>";
        fetchFilter += @"<link-entity name='systemuser' to='owninguser'>";
        fetchFilter += @"<filter type='and'>";
        fetchFilter += @"<condition attribute='firstname' operator='eq' value='" + firstName + "' />";
        fetchFilter += @"<condition attribute='lastname' operator='eq' value='" + lastName + "' />";
        fetchFilter += @"</filter>";
        fetchFilter += @"</link-entity>";
        fetchFilter += @"</entity>";
        fetchFilter += @"</fetch>";

        XmlDocument xmldoc = new XmlDocument();
        xmldoc.LoadXml(CrmWebService.Fetch(fetchFilter));

Hope it will be useful for somebody. Bye.