|
strXML - XML String, representing the Frequently Asked Question (FAQ) record to be added, updated or
deleted. To view the validating XSD Schema, please click here
(opens in a new window). An example is provided here (opens in a
new window) or below:
<FAQ FAQ_ID="2" Date_Created="2004-01-20T14:50:00">
<Question>How many "inches" are in a "foot"?</Question>
<Answer>12 inches.</Answer>
</FAQ>
To create a new FAQ record, please provide a unique identifier as the value of the
FAQ_ID attribute. The easiest way of obtaining a unique identifier
is by calling the GetNewFAQID SOAP method.
If an existing FAQ record's identifier is provided as the value of the
FAQ_ID attribute, an update of that record will be performed by the system,
as long as any of the child elements are also included in the XML string.
To delete an FAQ record from the system, the XML string must consist of only the root element and the
FAQ_ID attribute, with the identifier of the record to be deleted as the
attribute's value. Do not provide any of the root node's child elements. An example is provided
below:
<FAQ FAQ_ID="8" />
|