Description
Complete a ERO quote by updating it with the customer's decision (accepted, or declined)
EROComplete Input
- POST /services/ero.asmx HTTP/1.1
- Host:
- Content-Type: text/xml; charset=utf-8
- Content-Length: length
- SOAPAction: "http://consumerpriorityservice.com/EROComplete"
- <?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>
- <EROComplete xmlns="http://consumerpriorityservice.com/">
- <WsRequest>
- <Authentication>
- <DealerId>int</DealerId>
- <SubAccountId>int</SubAccountId>
- <ApiKey>string</ApiKey>
- </Authentication>
- <Quote>string</Quote>
- <Result>Accept or Decline</Result>
- </WsRequest>
- </EROComplete>
- </soap:Body>
- </soap:Envelope>
Argument |
Type |
Details |
Authentication |
ApiAuthenticationType |
|
Authentication.DealerId |
Int |
Your Dealer ID |
Authentication.SubAccountId |
Int |
(optional) Your SubAccount ID |
Authentication.ApiKey |
String |
Your API Key |
Quote |
String |
Quote number |
Result |
String |
Accept or Decline |
EROComplete Output
- <?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>
- <EROCompleteResponse xmlns="http://consumerpriorityservice.com/">
- <EROCompleteResult>
- <Ack>string</Ack>
- <Errors>
- <ErrorsType>
- <ErrorID>int</ErrorID>
- <ErrorMessage>string</ErrorMessage>
- </ErrorsType>
- </Errors>
- </EROCompleteResult>
- </EROCompleteResponse>
- </soap:Body>
- </soap:Envelope>
Argument |
Type |
Details |
Ack |
String |
Success or Failure |
Errors |
ErrorsType |
|
Errors.ErrorID |
Int |
Error Number |
Errors.ErrorMessage |
String |
Detailed error message |