LTV successfully upgrades CRM.COM Software and goes live with Triple Play. Read more
AVG selects CRM.COM to provide an SMS & Billing platform for their DTT and DTH operation in Vietnam. Read more
CRM.COM is hosting two events in June 2011: Loyalty for Card Issuers and Loyalty for Retailers. Read more
SMC partners with CRM.COM to promote and sell the CRM.COM Pay TV SMS and Billing solutions in Africa. Read more
Work on-line with your subsidiaries, affiliates and dealers to serve customers, cross-sell products and services, and outsource work. Read More
Access CRM.COM Software functionality from a variety of web-based desktops or MS Outlook. 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
Business on-demandIntroducing the CRM.COM Software solution that automates all business processes. 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.
|