SlideShare une entreprise Scribd logo
1  sur  10
Télécharger pour lire hors ligne
OEM LEAD DISPOSITION REPORTING SOLUTION




        OEM Lead Referral Management Application Certification

            Technical Architecture Design Document - Version 3.3



                                    (Updated May 7, 2003)




Assembled, Edited and Revised by:

        Ralph Paglia
        ralph_paglia@adp.com
        505-301-6369
OEM LEAD DISPOSITION REPORTING SOLUTION
Certification Criteria Requirement
     1. To Vendors
     Leads will be sent from OEM Lead Distribution System in one of three ways:




                                                                   Repository




                                                Web Service                           Email
                                                / POST




                                                    ADF/XML                 ADF/XML




                                                      {}
                                                              {}
                                                  Vendor Application
                                                            {}




                                                           Figure 1


         Email (XML -- Lead Data ADF XML v1.0)
         Web Services
         HTTP POST




Lead Disposition Reporting Technical Document                      Page 1 of 9                OEM Application Certification Requirements
OEM LEAD DISPOSITION REPORTING SOLUTION

     Email (XML -- Lead Data ADF XML v1.0)
     The current standard for lead submission being supported is XML - Lead Data ADF XML v1.0.

     The following are the OEM standards for email submission:
     1. “From:” field will contain OEM’s distribution system email
     2. “To:” field will be based on routing information
     3. “Subject:” will contain “OEM Lead”
     4. “Body:” will contain an ADF XML in plain text format


     A simple example:

     To: vendorA@vendorsdomain.com
     From: LDRAemail@ebizmail.OEM.com
     Subject: OEM Lead
     Body:

          ADF Formatted Data




Lead Disposition Reporting Technical Document   Page 2 of 9          OEM Application Certification Requirements
OEM LEAD DISPOSITION REPORTING SOLUTION

     Web Service


          POST /Vendor/Service1.asp HTTP/1.1
          Host: vendor.com
          Content-Type: text/xml; charset=utf-8
          Content-Length: length
          SOAPAction: "http://OEM.com/webservice/NewLead"

          <?xml version="1.0" encoding="utf-8"?>
          <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-
          instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
          xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
            <soap:Body>
              <NewLead xmlns="http://tempuri.org/">
               <adfData>string</adfData>
              </NewLead>
            </soap:Body>
          </soap:Envelope>



                          Field                                    Description
                         adfData                ADF formatted lead information being submitted

     Expected Response

          HTTP/1.1 200 OK

          Content-Type: text/xml; charset=utf-8
          Content-Length: length

          <?xml version="1.0" encoding="utf-8"?>
          <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-
          instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
          xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
            <soap:Body>
              <NewLeadResponse xmlns="http://tempuri.org/">
                 <NewLeadResult>int</NewLeadResult>
              </NewLeadResponse>
            </soap:Body>
          </soap:Envelope>




                      Field                                         Description
                   NewLeadResult                0 – Successful
                                                1 – Failed schema validation
                                                2 – Missing information; etc.



Lead Disposition Reporting Technical Document         Page 3 of 9          OEM Application Certification Requirements
OEM LEAD DISPOSITION REPORTING SOLUTION

     HTTP POST
          POST /OEM.com/webservice/newLead.asp HTTP/1.1
          Host: OEM.com
          Content-Type: text/xml
          Content-Length: length

          string


                          Field                                    Description
                          string                ADF formatted lead information being submitted

     Expected Response


          HTTP/1.1 200 OK
          Content-Type: text/xml; charset=utf-8
          Content-Length: length

          <?xml version="1.0" encoding="utf-8"?>
          <retCode>int</retCode>


                           Type                                     Description
                            int                 0 – Successful
                                                1 – Failed schema validation
                                                2 – Bad/Missing information; etc.




Lead Disposition Reporting Technical Document         Page 4 of 9         OEM Application Certification Requirements
OEM LEAD DISPOSITION REPORTING SOLUTION
     2. From Vendors – lead status information
     Status information coming from the vendor should be submitted to OEM’s web service/method.
     The information can be submitted using an HTTP POST, or by a direct call to the web
     service/method using SOAP/XML. The web service URL will be provided after a vendor’s
     certification process has been completed.




                                                                             OEM
                                                Figure 2


     A simple example (Web Service):

     http://ldra.OEM.com/programs/inc/rra08adf.wsdl


          POST http://ldra.OEM.com/programs/asp/rra08wsh.asp HTTP/1.1
          Host: ldra.OEM.com
          Content-Type: text/xml; charset=utf-8
          Content-Length: length
          SOAPAction: "LeadStatus"

          <?xml version="1.0" encoding="utf-8"?>




Lead Disposition Reporting Technical Document     Page 5 of 9      OEM Application Certification Requirements
OEM LEAD DISPOSITION REPORTING SOLUTION
          <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-
          instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
          xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
            <soap:Body>
               <statusData>string</statusData>
            </soap:Body>
          </soap:Envelope>


          Ex. <statusData>
          <status>
               <lead> <!-- Repeat for additional lead status -->
                    <id>string</id>
                    <arrivaltime>string</arrivaltime>
                    <autoresponse>Boolean (0 or 1)</autoresponse>
                    <responsetime>string</responsetime>
                    <lastevent>int</lastevent>
                    <currentstatus>int</currentstatus>
               </lead>
          </status>


                            Field                                     Description
                             id                 A unique lead id provided by OEM. This will be
                                                used to identify the lead when returning lead
                                                submission status information.
                        arrivaltime             The date/time the lead arrived
                       autoresponse             True - 1/False - 0 if an auto response was sent to
                                                the customer on arrival
                       responsetime             The date/time the lead was acted upon.
                         lastevent              Last event on lead:

                                                1 – Sale
                                                2 – Meeting
                                                3 – Letter
                                                4 – Phone
                                                5 – Note
                                                6 – Inactive
                                                7 – Email

                       currentstatus            1 – <Reserved>
                                                2 – In Process (Any activity taken on lead)
                                                3 – Sold
                                                4 – Inactive




Lead Disposition Reporting Technical Document       Page 6 of 9           OEM Application Certification Requirements
OEM LEAD DISPOSITION REPORTING SOLUTION
     Response


          HTTP/1.1 200 OK
          Content-Type: text/xml; charset=utf-8
          Content-Length: length

          <?xml version="1.0" encoding="utf-8"?>
          <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-
          instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
          xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
            <soap:Body>
              <LeadStatusResponse xmlns="http://tempuri.org/">
                <LeadStatusResult>int</NewLeadResult>
              </LeadStatusResponse>
            </soap:Body>
          </soap:Envelope>


                       Field                                        Description
                  LeadStatusResult              0 – Successful
                                                1 – Failed schema validation
                                                2 – Bad/Missing information; etc.




Lead Disposition Reporting Technical Document         Page 7 of 9         OEM Application Certification Requirements
OEM LEAD DISPOSITION REPORTING SOLUTION
     HTTP POST

     http://ldra.OEM.com/programs/asp/rra08vls.asp


          Content-Type: text/xml
          Content-Length: length

          string

          <status>
               <lead> <!-- Repeat for additional lead status -->
                    <id>string</id>
                    <arrivaltime>string</arrivaltime>
                    <autoresponse>Boolean (0 or 1)</autoresponse>
                    <responsetime>string</responsetime>
                    <lastevent>int</lastevent>
                    <currentstatus>int</currentstatus>
               </lead>
          </status>


                            Field                                    Description
                             id                 A unique lead id provided by OEM. This will be
                                                used to identify the lead when returning lead
                                                submission status information.
                        arrivaltime             The date/time the lead arrived
                       autoresponse             True – 1 /False - 0 if an auto response was sent to
                                                the customer on arrival
                       responsetime             The date/time the lead was acted upon.
                         lastevent              Last event on lead:

                                                1 – Sale
                                                2 – Meeting
                                                3 – Letter
                                                4 – Phone
                                                5 – Note
                                                6 – Inactive
                                                7 – Email

                       currentstatus            1 – <Reserved>
                                                2 – In Process (Any activity taken on lead)
                                                3 – Sold
                                                4 – Inactive




Lead Disposition Reporting Technical Document       Page 8 of 9           OEM Application Certification Requirements
OEM LEAD DISPOSITION REPORTING SOLUTION
     Expected Response


          HTTP/1.1 200 OK
          Content-Type: text/xml; charset=utf-8
          Content-Length: length

          <?xml version="1.0" encoding="utf-8"?>
          <retCode>int</retCode>


                           Type                                     Description
                            int                 0 – Successful
                                                1 – Failed schema validation
                                                2 – Bad/Missing information; etc.




Lead Disposition Reporting Technical Document         Page 9 of 9         OEM Application Certification Requirements

Contenu connexe

Similaire à Oem Lead Disposition Vendor Certification V3

Interoperable Web Services with JAX-WS and WSIT
Interoperable Web Services with JAX-WS and WSITInteroperable Web Services with JAX-WS and WSIT
Interoperable Web Services with JAX-WS and WSITCarol McDonald
 
Web Services
Web ServicesWeb Services
Web ServicesF K
 
jkljklj
jkljkljjkljklj
jkljkljhoefo
 
Restful Web Services
Restful Web ServicesRestful Web Services
Restful Web ServicesAngelin R
 
Intro to web services
Intro to web servicesIntro to web services
Intro to web servicesNeil Ghosh
 
Apache Etch Introduction @ FOSDEM 2011
Apache Etch Introduction @ FOSDEM 2011Apache Etch Introduction @ FOSDEM 2011
Apache Etch Introduction @ FOSDEM 2011grandyho
 
Rapid java backend and api development for mobile devices
Rapid java backend and api development for mobile devicesRapid java backend and api development for mobile devices
Rapid java backend and api development for mobile devicesciklum_ods
 
A great api is hard to find
A great api is hard to findA great api is hard to find
A great api is hard to findDan Diephouse
 
Petr Dvořák: Mobilní webové služby pohledem iPhone developera
Petr Dvořák: Mobilní webové služby pohledem iPhone developeraPetr Dvořák: Mobilní webové služby pohledem iPhone developera
Petr Dvořák: Mobilní webové služby pohledem iPhone developeraWebExpo
 
Webservices Testing PPT.pdf
Webservices Testing PPT.pdfWebservices Testing PPT.pdf
Webservices Testing PPT.pdfAbhishekDhotre4
 
Progress application server for openedge best practices - PUG Baltic Annual C...
Progress application server for openedge best practices - PUG Baltic Annual C...Progress application server for openedge best practices - PUG Baltic Annual C...
Progress application server for openedge best practices - PUG Baltic Annual C...Alen Leit
 
Dave Carroll Application Services Salesforce
Dave Carroll Application Services SalesforceDave Carroll Application Services Salesforce
Dave Carroll Application Services Salesforcedeimos
 
FMS Administration Seminar
FMS Administration SeminarFMS Administration Seminar
FMS Administration SeminarYoss Cohen
 

Similaire à Oem Lead Disposition Vendor Certification V3 (20)

Interoperable Web Services with JAX-WS and WSIT
Interoperable Web Services with JAX-WS and WSITInteroperable Web Services with JAX-WS and WSIT
Interoperable Web Services with JAX-WS and WSIT
 
Soap xp-wg
Soap xp-wgSoap xp-wg
Soap xp-wg
 
Web services
Web servicesWeb services
Web services
 
Web Services
Web ServicesWeb Services
Web Services
 
jkljklj
jkljkljjkljklj
jkljklj
 
Introduction to SOAP
Introduction to SOAPIntroduction to SOAP
Introduction to SOAP
 
Restful Web Services
Restful Web ServicesRestful Web Services
Restful Web Services
 
CSG 2012
CSG 2012CSG 2012
CSG 2012
 
Intro to web services
Intro to web servicesIntro to web services
Intro to web services
 
Ead pertemuan-7
Ead pertemuan-7Ead pertemuan-7
Ead pertemuan-7
 
Apache Etch Introduction @ FOSDEM 2011
Apache Etch Introduction @ FOSDEM 2011Apache Etch Introduction @ FOSDEM 2011
Apache Etch Introduction @ FOSDEM 2011
 
Web services overview
Web services overviewWeb services overview
Web services overview
 
Rapid java backend and api development for mobile devices
Rapid java backend and api development for mobile devicesRapid java backend and api development for mobile devices
Rapid java backend and api development for mobile devices
 
A great api is hard to find
A great api is hard to findA great api is hard to find
A great api is hard to find
 
Petr Dvořák: Mobilní webové služby pohledem iPhone developera
Petr Dvořák: Mobilní webové služby pohledem iPhone developeraPetr Dvořák: Mobilní webové služby pohledem iPhone developera
Petr Dvořák: Mobilní webové služby pohledem iPhone developera
 
- Webexpo 2010
- Webexpo 2010- Webexpo 2010
- Webexpo 2010
 
Webservices Testing PPT.pdf
Webservices Testing PPT.pdfWebservices Testing PPT.pdf
Webservices Testing PPT.pdf
 
Progress application server for openedge best practices - PUG Baltic Annual C...
Progress application server for openedge best practices - PUG Baltic Annual C...Progress application server for openedge best practices - PUG Baltic Annual C...
Progress application server for openedge best practices - PUG Baltic Annual C...
 
Dave Carroll Application Services Salesforce
Dave Carroll Application Services SalesforceDave Carroll Application Services Salesforce
Dave Carroll Application Services Salesforce
 
FMS Administration Seminar
FMS Administration SeminarFMS Administration Seminar
FMS Administration Seminar
 

Plus de Social Media Marketing

Why Display Advertising vs PPC Search Advertising
Why Display Advertising vs PPC Search AdvertisingWhy Display Advertising vs PPC Search Advertising
Why Display Advertising vs PPC Search AdvertisingSocial Media Marketing
 
Automotive Advertising Landing Page Best Practices
Automotive Advertising Landing Page Best PracticesAutomotive Advertising Landing Page Best Practices
Automotive Advertising Landing Page Best PracticesSocial Media Marketing
 
Automotive Marketing; Predicting The Present
Automotive Marketing; Predicting The PresentAutomotive Marketing; Predicting The Present
Automotive Marketing; Predicting The PresentSocial Media Marketing
 
Reaching the In-Market Automotive Consumer
Reaching the In-Market Automotive ConsumerReaching the In-Market Automotive Consumer
Reaching the In-Market Automotive ConsumerSocial Media Marketing
 
Social media aids customer acquisition media buyerplanner
Social media aids customer acquisition   media buyerplannerSocial media aids customer acquisition   media buyerplanner
Social media aids customer acquisition media buyerplannerSocial Media Marketing
 
Flagship motorcars mercedes benz & sprinter
Flagship motorcars mercedes benz & sprinterFlagship motorcars mercedes benz & sprinter
Flagship motorcars mercedes benz & sprinterSocial Media Marketing
 

Plus de Social Media Marketing (20)

Why Display Advertising vs PPC Search Advertising
Why Display Advertising vs PPC Search AdvertisingWhy Display Advertising vs PPC Search Advertising
Why Display Advertising vs PPC Search Advertising
 
Automotive Advertising Landing Page Best Practices
Automotive Advertising Landing Page Best PracticesAutomotive Advertising Landing Page Best Practices
Automotive Advertising Landing Page Best Practices
 
Automotive Marketing; Predicting The Present
Automotive Marketing; Predicting The PresentAutomotive Marketing; Predicting The Present
Automotive Marketing; Predicting The Present
 
Reaching the In-Market Automotive Consumer
Reaching the In-Market Automotive ConsumerReaching the In-Market Automotive Consumer
Reaching the In-Market Automotive Consumer
 
Social media-marketing-networking
Social media-marketing-networkingSocial media-marketing-networking
Social media-marketing-networking
 
Googlestudy
GooglestudyGooglestudy
Googlestudy
 
Yahoostudy
YahoostudyYahoostudy
Yahoostudy
 
Emarketer
EmarketerEmarketer
Emarketer
 
Jd power media annual_review
Jd power media annual_reviewJd power media annual_review
Jd power media annual_review
 
Pr writing fundamentals
Pr writing fundamentalsPr writing fundamentals
Pr writing fundamentals
 
Online newsreleasein
Online newsreleaseinOnline newsreleasein
Online newsreleasein
 
Social media aids customer acquisition media buyerplanner
Social media aids customer acquisition   media buyerplannerSocial media aids customer acquisition   media buyerplanner
Social media aids customer acquisition media buyerplanner
 
Emarketing strategies for success
Emarketing strategies for successEmarketing strategies for success
Emarketing strategies for success
 
Digital dealer june 2010
Digital dealer june 2010Digital dealer june 2010
Digital dealer june 2010
 
Net trak lead status v5
Net trak lead status v5Net trak lead status v5
Net trak lead status v5
 
Dealer magazine july 2010
Dealer magazine july 2010Dealer magazine july 2010
Dealer magazine july 2010
 
Digital dealer magazine may 2010
Digital dealer magazine may 2010Digital dealer magazine may 2010
Digital dealer magazine may 2010
 
Digital dealer april 2010
Digital dealer april 2010Digital dealer april 2010
Digital dealer april 2010
 
Flagship motorcars mercedes benz & sprinter
Flagship motorcars mercedes benz & sprinterFlagship motorcars mercedes benz & sprinter
Flagship motorcars mercedes benz & sprinter
 
Google top ten whitepaper
Google top ten whitepaperGoogle top ten whitepaper
Google top ten whitepaper
 

Dernier

-VDA-Special-Characteristics Special characteristics.pdf
-VDA-Special-Characteristics Special characteristics.pdf-VDA-Special-Characteristics Special characteristics.pdf
-VDA-Special-Characteristics Special characteristics.pdfBorja ARRIZABALAGA URIARTE
 
Timer Handling in UDS | S3 Server Timer | P2 and P2 Start Timer
Timer Handling in UDS | S3 Server Timer | P2 and P2 Start TimerTimer Handling in UDS | S3 Server Timer | P2 and P2 Start Timer
Timer Handling in UDS | S3 Server Timer | P2 and P2 Start TimerKapil Thakar
 
Introduction to Automotive Bootloader | Programming Sequence
Introduction to Automotive Bootloader | Programming SequenceIntroduction to Automotive Bootloader | Programming Sequence
Introduction to Automotive Bootloader | Programming SequenceKapil Thakar
 
Why Won't Your Audi A3 Shift Into Reverse Gear Let's Investigate
Why Won't Your Audi A3 Shift Into Reverse Gear Let's InvestigateWhy Won't Your Audi A3 Shift Into Reverse Gear Let's Investigate
Why Won't Your Audi A3 Shift Into Reverse Gear Let's InvestigateAutowerks
 
Introduction to UDS over CAN | UDS Service
Introduction to UDS over CAN | UDS ServiceIntroduction to UDS over CAN | UDS Service
Introduction to UDS over CAN | UDS ServiceKapil Thakar
 
Toyota Yaris service manual Free.pdf Toyota Yaris Service manual
Toyota Yaris service manual Free.pdf  Toyota Yaris Service manualToyota Yaris service manual Free.pdf  Toyota Yaris Service manual
Toyota Yaris service manual Free.pdf Toyota Yaris Service manualAutocarmanuals.com
 
Car Seat Covers and Seat Protection Guide
Car Seat Covers and Seat Protection GuideCar Seat Covers and Seat Protection Guide
Car Seat Covers and Seat Protection GuideAskXX.com
 
technical report on EV. EVs can offer benefitssuch as lower operating costs a...
technical report on EV. EVs can offer benefitssuch as lower operating costs a...technical report on EV. EVs can offer benefitssuch as lower operating costs a...
technical report on EV. EVs can offer benefitssuch as lower operating costs a...Bijay Sharma
 
Vina Score and Vin Min for almost all the models 2024
Vina Score and Vin Min for almost all the models 2024Vina Score and Vin Min for almost all the models 2024
Vina Score and Vin Min for almost all the models 2024jipohal318
 
Nokia Drone Networks - Customer Presentation - MWC2.pdf
Nokia Drone Networks - Customer Presentation - MWC2.pdfNokia Drone Networks - Customer Presentation - MWC2.pdf
Nokia Drone Networks - Customer Presentation - MWC2.pdfJosFerro15
 
CAMIONES TOYOTA N04C- Engine y HINO 300.
CAMIONES TOYOTA N04C- Engine y HINO 300.CAMIONES TOYOTA N04C- Engine y HINO 300.
CAMIONES TOYOTA N04C- Engine y HINO 300.JavierAlejandroCordo1
 
Automotive Bootloader Complete Guide with UDS Frame Format
Automotive Bootloader Complete Guide with UDS Frame FormatAutomotive Bootloader Complete Guide with UDS Frame Format
Automotive Bootloader Complete Guide with UDS Frame FormatKapil Thakar
 
Basic of Firmware & Embedded Software Programming in C
Basic of Firmware & Embedded Software Programming in CBasic of Firmware & Embedded Software Programming in C
Basic of Firmware & Embedded Software Programming in CKapil Thakar
 
Solar Photovoltaic Plant Project Proposal by Slidesgo.pptx
Solar Photovoltaic Plant Project Proposal by Slidesgo.pptxSolar Photovoltaic Plant Project Proposal by Slidesgo.pptx
Solar Photovoltaic Plant Project Proposal by Slidesgo.pptxAmarHaddad
 
What Should BMW Owners Know About Steptronic Transmission Problems
What Should BMW Owners Know About Steptronic Transmission ProblemsWhat Should BMW Owners Know About Steptronic Transmission Problems
What Should BMW Owners Know About Steptronic Transmission ProblemsSchearer's Sales & Service Inc
 
5s-5S 5S 5S 5S 5S 5S 5S PRESENTATION .ppt
5s-5S 5S 5S 5S 5S 5S 5S PRESENTATION  .ppt5s-5S 5S 5S 5S 5S 5S 5S PRESENTATION  .ppt
5s-5S 5S 5S 5S 5S 5S 5S PRESENTATION .ppthiren65650
 
Quicker and better: South Korea’s new high-speed train 'EMU-320'
Quicker and better: South Korea’s new high-speed train 'EMU-320'Quicker and better: South Korea’s new high-speed train 'EMU-320'
Quicker and better: South Korea’s new high-speed train 'EMU-320'Hyundai Motor Group
 

Dernier (17)

-VDA-Special-Characteristics Special characteristics.pdf
-VDA-Special-Characteristics Special characteristics.pdf-VDA-Special-Characteristics Special characteristics.pdf
-VDA-Special-Characteristics Special characteristics.pdf
 
Timer Handling in UDS | S3 Server Timer | P2 and P2 Start Timer
Timer Handling in UDS | S3 Server Timer | P2 and P2 Start TimerTimer Handling in UDS | S3 Server Timer | P2 and P2 Start Timer
Timer Handling in UDS | S3 Server Timer | P2 and P2 Start Timer
 
Introduction to Automotive Bootloader | Programming Sequence
Introduction to Automotive Bootloader | Programming SequenceIntroduction to Automotive Bootloader | Programming Sequence
Introduction to Automotive Bootloader | Programming Sequence
 
Why Won't Your Audi A3 Shift Into Reverse Gear Let's Investigate
Why Won't Your Audi A3 Shift Into Reverse Gear Let's InvestigateWhy Won't Your Audi A3 Shift Into Reverse Gear Let's Investigate
Why Won't Your Audi A3 Shift Into Reverse Gear Let's Investigate
 
Introduction to UDS over CAN | UDS Service
Introduction to UDS over CAN | UDS ServiceIntroduction to UDS over CAN | UDS Service
Introduction to UDS over CAN | UDS Service
 
Toyota Yaris service manual Free.pdf Toyota Yaris Service manual
Toyota Yaris service manual Free.pdf  Toyota Yaris Service manualToyota Yaris service manual Free.pdf  Toyota Yaris Service manual
Toyota Yaris service manual Free.pdf Toyota Yaris Service manual
 
Car Seat Covers and Seat Protection Guide
Car Seat Covers and Seat Protection GuideCar Seat Covers and Seat Protection Guide
Car Seat Covers and Seat Protection Guide
 
technical report on EV. EVs can offer benefitssuch as lower operating costs a...
technical report on EV. EVs can offer benefitssuch as lower operating costs a...technical report on EV. EVs can offer benefitssuch as lower operating costs a...
technical report on EV. EVs can offer benefitssuch as lower operating costs a...
 
Vina Score and Vin Min for almost all the models 2024
Vina Score and Vin Min for almost all the models 2024Vina Score and Vin Min for almost all the models 2024
Vina Score and Vin Min for almost all the models 2024
 
Nokia Drone Networks - Customer Presentation - MWC2.pdf
Nokia Drone Networks - Customer Presentation - MWC2.pdfNokia Drone Networks - Customer Presentation - MWC2.pdf
Nokia Drone Networks - Customer Presentation - MWC2.pdf
 
CAMIONES TOYOTA N04C- Engine y HINO 300.
CAMIONES TOYOTA N04C- Engine y HINO 300.CAMIONES TOYOTA N04C- Engine y HINO 300.
CAMIONES TOYOTA N04C- Engine y HINO 300.
 
Automotive Bootloader Complete Guide with UDS Frame Format
Automotive Bootloader Complete Guide with UDS Frame FormatAutomotive Bootloader Complete Guide with UDS Frame Format
Automotive Bootloader Complete Guide with UDS Frame Format
 
Basic of Firmware & Embedded Software Programming in C
Basic of Firmware & Embedded Software Programming in CBasic of Firmware & Embedded Software Programming in C
Basic of Firmware & Embedded Software Programming in C
 
Solar Photovoltaic Plant Project Proposal by Slidesgo.pptx
Solar Photovoltaic Plant Project Proposal by Slidesgo.pptxSolar Photovoltaic Plant Project Proposal by Slidesgo.pptx
Solar Photovoltaic Plant Project Proposal by Slidesgo.pptx
 
What Should BMW Owners Know About Steptronic Transmission Problems
What Should BMW Owners Know About Steptronic Transmission ProblemsWhat Should BMW Owners Know About Steptronic Transmission Problems
What Should BMW Owners Know About Steptronic Transmission Problems
 
5s-5S 5S 5S 5S 5S 5S 5S PRESENTATION .ppt
5s-5S 5S 5S 5S 5S 5S 5S PRESENTATION  .ppt5s-5S 5S 5S 5S 5S 5S 5S PRESENTATION  .ppt
5s-5S 5S 5S 5S 5S 5S 5S PRESENTATION .ppt
 
Quicker and better: South Korea’s new high-speed train 'EMU-320'
Quicker and better: South Korea’s new high-speed train 'EMU-320'Quicker and better: South Korea’s new high-speed train 'EMU-320'
Quicker and better: South Korea’s new high-speed train 'EMU-320'
 

Oem Lead Disposition Vendor Certification V3

  • 1. OEM LEAD DISPOSITION REPORTING SOLUTION OEM Lead Referral Management Application Certification Technical Architecture Design Document - Version 3.3 (Updated May 7, 2003) Assembled, Edited and Revised by: Ralph Paglia ralph_paglia@adp.com 505-301-6369
  • 2. OEM LEAD DISPOSITION REPORTING SOLUTION Certification Criteria Requirement 1. To Vendors Leads will be sent from OEM Lead Distribution System in one of three ways: Repository Web Service Email / POST ADF/XML ADF/XML {} {} Vendor Application {} Figure 1  Email (XML -- Lead Data ADF XML v1.0)  Web Services  HTTP POST Lead Disposition Reporting Technical Document Page 1 of 9 OEM Application Certification Requirements
  • 3. OEM LEAD DISPOSITION REPORTING SOLUTION Email (XML -- Lead Data ADF XML v1.0) The current standard for lead submission being supported is XML - Lead Data ADF XML v1.0. The following are the OEM standards for email submission: 1. “From:” field will contain OEM’s distribution system email 2. “To:” field will be based on routing information 3. “Subject:” will contain “OEM Lead” 4. “Body:” will contain an ADF XML in plain text format A simple example: To: vendorA@vendorsdomain.com From: LDRAemail@ebizmail.OEM.com Subject: OEM Lead Body: ADF Formatted Data Lead Disposition Reporting Technical Document Page 2 of 9 OEM Application Certification Requirements
  • 4. OEM LEAD DISPOSITION REPORTING SOLUTION Web Service POST /Vendor/Service1.asp HTTP/1.1 Host: vendor.com Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://OEM.com/webservice/NewLead" <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema- instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <NewLead xmlns="http://tempuri.org/"> <adfData>string</adfData> </NewLead> </soap:Body> </soap:Envelope> Field Description adfData ADF formatted lead information being submitted Expected Response HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema- instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <NewLeadResponse xmlns="http://tempuri.org/"> <NewLeadResult>int</NewLeadResult> </NewLeadResponse> </soap:Body> </soap:Envelope> Field Description NewLeadResult 0 – Successful 1 – Failed schema validation 2 – Missing information; etc. Lead Disposition Reporting Technical Document Page 3 of 9 OEM Application Certification Requirements
  • 5. OEM LEAD DISPOSITION REPORTING SOLUTION HTTP POST POST /OEM.com/webservice/newLead.asp HTTP/1.1 Host: OEM.com Content-Type: text/xml Content-Length: length string Field Description string ADF formatted lead information being submitted Expected Response HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <retCode>int</retCode> Type Description int 0 – Successful 1 – Failed schema validation 2 – Bad/Missing information; etc. Lead Disposition Reporting Technical Document Page 4 of 9 OEM Application Certification Requirements
  • 6. OEM LEAD DISPOSITION REPORTING SOLUTION 2. From Vendors – lead status information Status information coming from the vendor should be submitted to OEM’s web service/method. The information can be submitted using an HTTP POST, or by a direct call to the web service/method using SOAP/XML. The web service URL will be provided after a vendor’s certification process has been completed. OEM Figure 2 A simple example (Web Service): http://ldra.OEM.com/programs/inc/rra08adf.wsdl POST http://ldra.OEM.com/programs/asp/rra08wsh.asp HTTP/1.1 Host: ldra.OEM.com Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "LeadStatus" <?xml version="1.0" encoding="utf-8"?> Lead Disposition Reporting Technical Document Page 5 of 9 OEM Application Certification Requirements
  • 7. OEM LEAD DISPOSITION REPORTING SOLUTION <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema- instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <statusData>string</statusData> </soap:Body> </soap:Envelope> Ex. <statusData> <status> <lead> <!-- Repeat for additional lead status --> <id>string</id> <arrivaltime>string</arrivaltime> <autoresponse>Boolean (0 or 1)</autoresponse> <responsetime>string</responsetime> <lastevent>int</lastevent> <currentstatus>int</currentstatus> </lead> </status> Field Description id A unique lead id provided by OEM. This will be used to identify the lead when returning lead submission status information. arrivaltime The date/time the lead arrived autoresponse True - 1/False - 0 if an auto response was sent to the customer on arrival responsetime The date/time the lead was acted upon. lastevent Last event on lead: 1 – Sale 2 – Meeting 3 – Letter 4 – Phone 5 – Note 6 – Inactive 7 – Email currentstatus 1 – <Reserved> 2 – In Process (Any activity taken on lead) 3 – Sold 4 – Inactive Lead Disposition Reporting Technical Document Page 6 of 9 OEM Application Certification Requirements
  • 8. OEM LEAD DISPOSITION REPORTING SOLUTION Response HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema- instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <LeadStatusResponse xmlns="http://tempuri.org/"> <LeadStatusResult>int</NewLeadResult> </LeadStatusResponse> </soap:Body> </soap:Envelope> Field Description LeadStatusResult 0 – Successful 1 – Failed schema validation 2 – Bad/Missing information; etc. Lead Disposition Reporting Technical Document Page 7 of 9 OEM Application Certification Requirements
  • 9. OEM LEAD DISPOSITION REPORTING SOLUTION HTTP POST http://ldra.OEM.com/programs/asp/rra08vls.asp Content-Type: text/xml Content-Length: length string <status> <lead> <!-- Repeat for additional lead status --> <id>string</id> <arrivaltime>string</arrivaltime> <autoresponse>Boolean (0 or 1)</autoresponse> <responsetime>string</responsetime> <lastevent>int</lastevent> <currentstatus>int</currentstatus> </lead> </status> Field Description id A unique lead id provided by OEM. This will be used to identify the lead when returning lead submission status information. arrivaltime The date/time the lead arrived autoresponse True – 1 /False - 0 if an auto response was sent to the customer on arrival responsetime The date/time the lead was acted upon. lastevent Last event on lead: 1 – Sale 2 – Meeting 3 – Letter 4 – Phone 5 – Note 6 – Inactive 7 – Email currentstatus 1 – <Reserved> 2 – In Process (Any activity taken on lead) 3 – Sold 4 – Inactive Lead Disposition Reporting Technical Document Page 8 of 9 OEM Application Certification Requirements
  • 10. OEM LEAD DISPOSITION REPORTING SOLUTION Expected Response HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <retCode>int</retCode> Type Description int 0 – Successful 1 – Failed schema validation 2 – Bad/Missing information; etc. Lead Disposition Reporting Technical Document Page 9 of 9 OEM Application Certification Requirements