* '''Store as raw''':<br/> If <code>application/octet-stream</code> is chosen as content-type, the input data is added as raw.
* '''Convert to XML''':<br/> Raw Incoming data can be explicitly is converted to XML by specifying if a parser is available for the specified content-type. If raw data is added and if no content type, or a wrong content, is specified, a <code>400</code> (BAD REQUEST) error will be raised. The following content types are supported:
* <code>application/octet-stream</code>: Stores input data as raw file.
* <code>text/comma-separated-values</code>: Stores CSV text input as XML.
* <code>text/html</code>: Stores HTML input as XML.
If raw data is added and if no content type, or a wrong content, is specified, a <code>400</code> (BAD REQUEST) error will be raised.
; Examples