Feedback Input File

The following sample code is an example of a SOAP request message for the Feedback method. This request message is sent from a Siebel application (version 8.1 or later) to a third-party adapter or Web service.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:asi="http://siebel.com/asi/"
xmlns:get="http://www.siebel.com/xml/GetParams_IO">

<soapenv:Header/>
<soapenv:Body>
<asi:Feedback>
	<InputFeedbackSiebelMessage>
		<get:ListOfSAFeedbackInput>
		<!--Zero or more repetitions:-->
   		 	<get:SAFeedbacklnput>
    			<get:Language>English</get:Language>
    			<get:LookupText>test</get:LookupText>
    			<get:CharacterSet>utf16</get:CharacterSet>
    			<get:PositiveCategory>Ramani Iyer</get:PositiveCategory>
    			<get:NegativeCategory>Bhavin Gosrani</get:NegativeCategory>
			</get:SAFeedbacklnput>
		</get:ListOfSAFeedbackInput>
	</InputFeedbackSiebelMessage>
</asi:Feedback>
</soapenv:Body>
</soapenv:Envelope>