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

CRM.COM News

CRM.COM to exhibit at CeBIT 2010

CRM.COM are exhibiting their Real Time Loyalty & Offers solution at CeBIT (Hannover, Germany) 2nd - 6th of March 2010
Read more



IBM DB2

CRM.COM Ready for IBM DB2 data server software
Read more



On Digital Media

ODM signs agreement with CRM.COM
Read more



Upgrades well received

CRM.COM Version 3 Release 2 Upgrades
Read more



CRM.COM Articles

Web or MS Outlook access channels

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



Ease of Use is the Key

Ease of Use is the Key Here at CRM.COM, we believe that if you can’t use it, neither will the rest of your organization.
Read More



Training & Events

CRM.COM Certification Course

CRM.COM is offering regular 1 week certification courses.
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

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.