You are here: Home > CRM.COM_Software > Technology > Web Services

CRM.COM News

LTV Moves to Triple Play with CRM.COM Software V3R3

LTV successfully upgrades CRM.COM Software and goes live with Triple Play.
Read more



CRM.COM Signs Agreement with AVG JSC for Provision of SMS & Billing Software

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 Loyalty Events in June

CRM.COM is hosting two events in June 2011: Loyalty for Card Issuers and Loyalty for Retailers.
Read more



SMC become Authorised CRM.COM Agents in Africa for Pay TV

SMC partners with CRM.COM to promote and sell the CRM.COM Pay TV SMS and Billing solutions in Africa.
Read more



CRM.COM Articles

Leverage your partners and resellers

Work on-line with your subsidiaries, affiliates and dealers to serve customers, cross-sell products and services, and outsource work.
Read More



Web or MS Outlook access channels

Access CRM.COM Software functionality from a variety of web-based desktops or MS Outlook.
Read More



Training & Events

CRM.COM Certification Course

CRM.COM is offering regular 1 week certification courses.
Read More

Nicosia, Cyprus, May 2009

CRM.COM sponsors and presents at the CISCO Collaboration summit in Cyprus
Read More

Brochures

Improve operational efficiency

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-demand

Introducing the CRM.COM Software solution that automates all business processes.
Download brochure

Web Services Table


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.