eProposal


Click here for a complete list of operations.

SaveCVBProposal

Inserts/Updates CVB proposal into the eProposal System. It takes raw XML in CVB schema.

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /eproposal.asmx HTTP/1.1
Host: webservices.cendyn.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://webservices.cendyn.com/eProposal/SaveCVBProposal"

<?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:Header>
    <AuthSoapHeader xmlns="http://webservices.cendyn.com/eProposal">
      <UserName>string</UserName>
      <Password>string</Password>
    </AuthSoapHeader>
    <CultureHeader xmlns="http://webservices.cendyn.com/eProposal">
      <CultureName>string</CultureName>
    </CultureHeader>
  </soap:Header>
  <soap:Body>
    <SaveCVBProposal xmlns="http://webservices.cendyn.com/eProposal">
      <RawXML>string</RawXML>
    </SaveCVBProposal>
  </soap:Body>
</soap:Envelope>
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>
    <SaveCVBProposalResponse xmlns="http://webservices.cendyn.com/eProposal">
      <SaveCVBProposalResult>
        <BookingGUID>string</BookingGUID>
        <BookingKey>string</BookingKey>
        <ClientID>int</ClientID>
        <EmployeeID>int</EmployeeID>
        <PropertyID>int</PropertyID>
        <ProposalID>int</ProposalID>
        <ProposalType>UNDEFINED or Starwood or EPFull or EPLite or EPFull_NET</ProposalType>
        <ResultCode>INSERTED_NEW or UPDATED or NO_SAVE_PROPOSAL_ALREADY_SENT or UNAUTHORIZED or FAILED</ResultCode>
        <ProposalTypeCode>UNDEFINED or StarwoodProposal or MeetingProposal</ProposalTypeCode>
        <eProposalURL>string</eProposalURL>
        <eProposalClientURL>string</eProposalClientURL>
        <SaveProposalError>
          <ErrorCode>string</ErrorCode>
          <ErrorDetail>string</ErrorDetail>
          <ErrorType>string</ErrorType>
          <Severity>string</Severity>
          <TransactionId>int</TransactionId>
          <ResponsibleParty>string</ResponsibleParty>
        </SaveProposalError>
      </SaveCVBProposalResult>
    </SaveCVBProposalResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /eproposal.asmx HTTP/1.1
Host: webservices.cendyn.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Header>
    <AuthSoapHeader xmlns="http://webservices.cendyn.com/eProposal">
      <UserName>string</UserName>
      <Password>string</Password>
    </AuthSoapHeader>
    <CultureHeader xmlns="http://webservices.cendyn.com/eProposal">
      <CultureName>string</CultureName>
    </CultureHeader>
  </soap12:Header>
  <soap12:Body>
    <SaveCVBProposal xmlns="http://webservices.cendyn.com/eProposal">
      <RawXML>string</RawXML>
    </SaveCVBProposal>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <SaveCVBProposalResponse xmlns="http://webservices.cendyn.com/eProposal">
      <SaveCVBProposalResult>
        <BookingGUID>string</BookingGUID>
        <BookingKey>string</BookingKey>
        <ClientID>int</ClientID>
        <EmployeeID>int</EmployeeID>
        <PropertyID>int</PropertyID>
        <ProposalID>int</ProposalID>
        <ProposalType>UNDEFINED or Starwood or EPFull or EPLite or EPFull_NET</ProposalType>
        <ResultCode>INSERTED_NEW or UPDATED or NO_SAVE_PROPOSAL_ALREADY_SENT or UNAUTHORIZED or FAILED</ResultCode>
        <ProposalTypeCode>UNDEFINED or StarwoodProposal or MeetingProposal</ProposalTypeCode>
        <eProposalURL>string</eProposalURL>
        <eProposalClientURL>string</eProposalClientURL>
        <SaveProposalError>
          <ErrorCode>string</ErrorCode>
          <ErrorDetail>string</ErrorDetail>
          <ErrorType>string</ErrorType>
          <Severity>string</Severity>
          <TransactionId>int</TransactionId>
          <ResponsibleParty>string</ResponsibleParty>
        </SaveProposalError>
      </SaveCVBProposalResult>
    </SaveCVBProposalResponse>
  </soap12:Body>
</soap12:Envelope>