SlideShare a Scribd company logo
1 of 10
Download to read offline
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

More Related Content

Similar to 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
 

Similar to 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
 

More from 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
 

More from 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
 

Recently uploaded

原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证
原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证
原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证jjrehjwj11gg
 
原版1:1复刻俄亥俄州立大学毕业证OSU毕业证留信学历认证
原版1:1复刻俄亥俄州立大学毕业证OSU毕业证留信学历认证原版1:1复刻俄亥俄州立大学毕业证OSU毕业证留信学历认证
原版1:1复刻俄亥俄州立大学毕业证OSU毕业证留信学历认证jdkhjh
 
办理科廷科技大学毕业证Curtin毕业证留信学历认证
办理科廷科技大学毕业证Curtin毕业证留信学历认证办理科廷科技大学毕业证Curtin毕业证留信学历认证
办理科廷科技大学毕业证Curtin毕业证留信学历认证jdkhjh
 
(USQ毕业证)南昆士兰大学毕业证学位证成绩单修改留信学历认证原版一比一
(USQ毕业证)南昆士兰大学毕业证学位证成绩单修改留信学历认证原版一比一(USQ毕业证)南昆士兰大学毕业证学位证成绩单修改留信学历认证原版一比一
(USQ毕业证)南昆士兰大学毕业证学位证成绩单修改留信学历认证原版一比一gfghbihg
 
Building a Future Where Everyone Can Ride and Drive Electric by Bridget Gilmore
Building a Future Where Everyone Can Ride and Drive Electric by Bridget GilmoreBuilding a Future Where Everyone Can Ride and Drive Electric by Bridget Gilmore
Building a Future Where Everyone Can Ride and Drive Electric by Bridget GilmoreForth
 
原版1:1定制(IC大学毕业证)帝国理工学院大学毕业证国外文凭复刻成绩单#电子版制作#留信入库#多年经营绝对保证质量
原版1:1定制(IC大学毕业证)帝国理工学院大学毕业证国外文凭复刻成绩单#电子版制作#留信入库#多年经营绝对保证质量原版1:1定制(IC大学毕业证)帝国理工学院大学毕业证国外文凭复刻成绩单#电子版制作#留信入库#多年经营绝对保证质量
原版1:1定制(IC大学毕业证)帝国理工学院大学毕业证国外文凭复刻成绩单#电子版制作#留信入库#多年经营绝对保证质量208367051
 
-The-Present-Simple-Tense.pdf english hh
-The-Present-Simple-Tense.pdf english hh-The-Present-Simple-Tense.pdf english hh
-The-Present-Simple-Tense.pdf english hhmhamadhawlery16
 
办理萨省大学毕业证成绩单|购买加拿大USASK文凭证书
办理萨省大学毕业证成绩单|购买加拿大USASK文凭证书办理萨省大学毕业证成绩单|购买加拿大USASK文凭证书
办理萨省大学毕业证成绩单|购买加拿大USASK文凭证书zdzoqco
 
Centering Equity Panel by Samantha Bingham
Centering Equity Panel by Samantha BinghamCentering Equity Panel by Samantha Bingham
Centering Equity Panel by Samantha BinghamForth
 
Program Design by Prateek Suri and Christian Williss
Program Design by Prateek Suri and Christian WillissProgram Design by Prateek Suri and Christian Williss
Program Design by Prateek Suri and Christian WillissForth
 
原版1:1定制阳光海岸大学毕业证(JCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制阳光海岸大学毕业证(JCU毕业证)#文凭成绩单#真实留信学历认证永久存档原版1:1定制阳光海岸大学毕业证(JCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制阳光海岸大学毕业证(JCU毕业证)#文凭成绩单#真实留信学历认证永久存档208367051
 
What Causes The key not detected Message In Mercedes Cars
What Causes The key not detected Message In Mercedes CarsWhat Causes The key not detected Message In Mercedes Cars
What Causes The key not detected Message In Mercedes CarsGermany's Best Inc
 
Electric Nation Upper Midwest Inter-Tribal Electric Vehicle (EV) Charging Com...
Electric Nation Upper Midwest Inter-Tribal Electric Vehicle (EV) Charging Com...Electric Nation Upper Midwest Inter-Tribal Electric Vehicle (EV) Charging Com...
Electric Nation Upper Midwest Inter-Tribal Electric Vehicle (EV) Charging Com...Forth
 
Equity & Freight Electrification by Jose Miguel Acosta Cordova
Equity & Freight Electrification by Jose Miguel Acosta CordovaEquity & Freight Electrification by Jose Miguel Acosta Cordova
Equity & Freight Electrification by Jose Miguel Acosta CordovaForth
 
IPCR-Individual-Performance-Commitment-and-Review.doc
IPCR-Individual-Performance-Commitment-and-Review.docIPCR-Individual-Performance-Commitment-and-Review.doc
IPCR-Individual-Performance-Commitment-and-Review.docTykebernardo
 
办理原版学位证(UofT毕业证)多伦多大学毕业证成绩单修改留信学历认证永久查询
办理原版学位证(UofT毕业证)多伦多大学毕业证成绩单修改留信学历认证永久查询办理原版学位证(UofT毕业证)多伦多大学毕业证成绩单修改留信学历认证永久查询
办理原版学位证(UofT毕业证)多伦多大学毕业证成绩单修改留信学历认证永久查询gejoij
 
Digamma / CertiCon Company Presentation
Digamma / CertiCon Company  PresentationDigamma / CertiCon Company  Presentation
Digamma / CertiCon Company PresentationMihajloManjak
 
What Could Be Causing My Jaguar XF To Lose Coolant
What Could Be Causing My Jaguar XF To Lose CoolantWhat Could Be Causing My Jaguar XF To Lose Coolant
What Could Be Causing My Jaguar XF To Lose CoolantEMC- European Motor Cars
 
(办理学位证)墨尔本大学毕业证(Unimelb毕业证书)成绩单留信学历认证原版一模一样
(办理学位证)墨尔本大学毕业证(Unimelb毕业证书)成绩单留信学历认证原版一模一样(办理学位证)墨尔本大学毕业证(Unimelb毕业证书)成绩单留信学历认证原版一模一样
(办理学位证)墨尔本大学毕业证(Unimelb毕业证书)成绩单留信学历认证原版一模一样whjjkkk
 
(毕业原版)曼尼托巴大学毕业证(曼大学位证)毕业证成绩单留信学历认证原版一比一
(毕业原版)曼尼托巴大学毕业证(曼大学位证)毕业证成绩单留信学历认证原版一比一(毕业原版)曼尼托巴大学毕业证(曼大学位证)毕业证成绩单留信学历认证原版一比一
(毕业原版)曼尼托巴大学毕业证(曼大学位证)毕业证成绩单留信学历认证原版一比一ffhuih11ff
 

Recently uploaded (20)

原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证
原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证
原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证
 
原版1:1复刻俄亥俄州立大学毕业证OSU毕业证留信学历认证
原版1:1复刻俄亥俄州立大学毕业证OSU毕业证留信学历认证原版1:1复刻俄亥俄州立大学毕业证OSU毕业证留信学历认证
原版1:1复刻俄亥俄州立大学毕业证OSU毕业证留信学历认证
 
办理科廷科技大学毕业证Curtin毕业证留信学历认证
办理科廷科技大学毕业证Curtin毕业证留信学历认证办理科廷科技大学毕业证Curtin毕业证留信学历认证
办理科廷科技大学毕业证Curtin毕业证留信学历认证
 
(USQ毕业证)南昆士兰大学毕业证学位证成绩单修改留信学历认证原版一比一
(USQ毕业证)南昆士兰大学毕业证学位证成绩单修改留信学历认证原版一比一(USQ毕业证)南昆士兰大学毕业证学位证成绩单修改留信学历认证原版一比一
(USQ毕业证)南昆士兰大学毕业证学位证成绩单修改留信学历认证原版一比一
 
Building a Future Where Everyone Can Ride and Drive Electric by Bridget Gilmore
Building a Future Where Everyone Can Ride and Drive Electric by Bridget GilmoreBuilding a Future Where Everyone Can Ride and Drive Electric by Bridget Gilmore
Building a Future Where Everyone Can Ride and Drive Electric by Bridget Gilmore
 
原版1:1定制(IC大学毕业证)帝国理工学院大学毕业证国外文凭复刻成绩单#电子版制作#留信入库#多年经营绝对保证质量
原版1:1定制(IC大学毕业证)帝国理工学院大学毕业证国外文凭复刻成绩单#电子版制作#留信入库#多年经营绝对保证质量原版1:1定制(IC大学毕业证)帝国理工学院大学毕业证国外文凭复刻成绩单#电子版制作#留信入库#多年经营绝对保证质量
原版1:1定制(IC大学毕业证)帝国理工学院大学毕业证国外文凭复刻成绩单#电子版制作#留信入库#多年经营绝对保证质量
 
-The-Present-Simple-Tense.pdf english hh
-The-Present-Simple-Tense.pdf english hh-The-Present-Simple-Tense.pdf english hh
-The-Present-Simple-Tense.pdf english hh
 
办理萨省大学毕业证成绩单|购买加拿大USASK文凭证书
办理萨省大学毕业证成绩单|购买加拿大USASK文凭证书办理萨省大学毕业证成绩单|购买加拿大USASK文凭证书
办理萨省大学毕业证成绩单|购买加拿大USASK文凭证书
 
Centering Equity Panel by Samantha Bingham
Centering Equity Panel by Samantha BinghamCentering Equity Panel by Samantha Bingham
Centering Equity Panel by Samantha Bingham
 
Program Design by Prateek Suri and Christian Williss
Program Design by Prateek Suri and Christian WillissProgram Design by Prateek Suri and Christian Williss
Program Design by Prateek Suri and Christian Williss
 
原版1:1定制阳光海岸大学毕业证(JCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制阳光海岸大学毕业证(JCU毕业证)#文凭成绩单#真实留信学历认证永久存档原版1:1定制阳光海岸大学毕业证(JCU毕业证)#文凭成绩单#真实留信学历认证永久存档
原版1:1定制阳光海岸大学毕业证(JCU毕业证)#文凭成绩单#真实留信学历认证永久存档
 
What Causes The key not detected Message In Mercedes Cars
What Causes The key not detected Message In Mercedes CarsWhat Causes The key not detected Message In Mercedes Cars
What Causes The key not detected Message In Mercedes Cars
 
Electric Nation Upper Midwest Inter-Tribal Electric Vehicle (EV) Charging Com...
Electric Nation Upper Midwest Inter-Tribal Electric Vehicle (EV) Charging Com...Electric Nation Upper Midwest Inter-Tribal Electric Vehicle (EV) Charging Com...
Electric Nation Upper Midwest Inter-Tribal Electric Vehicle (EV) Charging Com...
 
Equity & Freight Electrification by Jose Miguel Acosta Cordova
Equity & Freight Electrification by Jose Miguel Acosta CordovaEquity & Freight Electrification by Jose Miguel Acosta Cordova
Equity & Freight Electrification by Jose Miguel Acosta Cordova
 
IPCR-Individual-Performance-Commitment-and-Review.doc
IPCR-Individual-Performance-Commitment-and-Review.docIPCR-Individual-Performance-Commitment-and-Review.doc
IPCR-Individual-Performance-Commitment-and-Review.doc
 
办理原版学位证(UofT毕业证)多伦多大学毕业证成绩单修改留信学历认证永久查询
办理原版学位证(UofT毕业证)多伦多大学毕业证成绩单修改留信学历认证永久查询办理原版学位证(UofT毕业证)多伦多大学毕业证成绩单修改留信学历认证永久查询
办理原版学位证(UofT毕业证)多伦多大学毕业证成绩单修改留信学历认证永久查询
 
Digamma / CertiCon Company Presentation
Digamma / CertiCon Company  PresentationDigamma / CertiCon Company  Presentation
Digamma / CertiCon Company Presentation
 
What Could Be Causing My Jaguar XF To Lose Coolant
What Could Be Causing My Jaguar XF To Lose CoolantWhat Could Be Causing My Jaguar XF To Lose Coolant
What Could Be Causing My Jaguar XF To Lose Coolant
 
(办理学位证)墨尔本大学毕业证(Unimelb毕业证书)成绩单留信学历认证原版一模一样
(办理学位证)墨尔本大学毕业证(Unimelb毕业证书)成绩单留信学历认证原版一模一样(办理学位证)墨尔本大学毕业证(Unimelb毕业证书)成绩单留信学历认证原版一模一样
(办理学位证)墨尔本大学毕业证(Unimelb毕业证书)成绩单留信学历认证原版一模一样
 
(毕业原版)曼尼托巴大学毕业证(曼大学位证)毕业证成绩单留信学历认证原版一比一
(毕业原版)曼尼托巴大学毕业证(曼大学位证)毕业证成绩单留信学历认证原版一比一(毕业原版)曼尼托巴大学毕业证(曼大学位证)毕业证成绩单留信学历认证原版一比一
(毕业原版)曼尼托巴大学毕业证(曼大学位证)毕业证成绩单留信学历认证原版一比一
 

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