CRM.COM are exhibiting their Real Time Loyalty & Offers solution at CeBIT (Hannover, Germany) 2nd - 6th of March 2010 Read more
CRM.COM Ready for IBM DB2 data server software Read more
ODM signs agreement with CRM.COM Read more
CRM.COM Version 3 Release 2 Upgrades Read more
CRM.COM is offering regular 1 week certification courses. Read More
Increase the efficiency of all your CRM processes with CRM.COM software extensive coverage of ALL sales, service, marketing and operations functions. Download brochure
A lot of the functions that exist in the EJBs are published as a web service. This allows third party system to integrate easily with CRM.COM Software.
|
Web Service |
Retrieve Contact |
|
Description |
The web service takes any part of the name and surname as input parameters, logins to CRM.COM and finds all the Contacts which fulfil these criteria. The web service creates an XML file with the contact detail of every matched contact and returns XML data back to the calling software (for example MS Outlook). |
|
Example |
You want to search about 'Papageorgiou Andros’. You can pass to the web service 'papage%' This will return all the Contacts that their name starts with 'papage'. |
|
Input parameters |
The login info parameter contains the username, password, internal unit and channel. The criteria parameter contains firstname,lastname, both, email address. In the criteria parameter you can write part of the name following by % |
|
Output |
The web service takes the parameters, logins to the system and finds all the Contacts with these criteria. The web service creates an XML file with all the details of every matched contact, and returns the XML back to the calling software function. The XML format is: <?xml version="1.0" encoding="UTF-8"?> <customers xmlns="http://www.crm.com/xmlschema/customers.rng"> <customer> <companyname>CRM.COM Software</companyname> <contactname> </contactname> <email>info@crm.com</email> </customer> <customer> <companyname </companyname> <contactname>Andros Papageorgiou</contactname> <email>Andros.papageorgiou@crm.com</email> </customer> |
|
Usage |
This web service is used for example by an extension we developed in MS Outlook to search for contacts stored in CRM.COM. The screen below calls the web service
After selecting a record it returns the matched data inside the email.
|