POST api/Tools/Invoice/XmlToHtml

Converte una fattura elettronica XML in HTML

Request Information

URI Parameters

None.

Body Parameters

Fattura elettronica XML

InvoiceXmlToHtmlRequest
NameDescriptionTypeAdditional information
FileName

Nome del file XML

string

Required

FileContent

Contenuto del file XML codificato in Base64

string

Required

Request Formats

application/json, text/json

Sample:
{
  "fileName": "sample string 1",
  "fileContent": "sample string 2"
}

application/xml, text/xml

Sample:
<InvoiceXmlToHtmlRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FxtWebAPI.Models">
  <FileContent>sample string 2</FileContent>
  <FileName>sample string 1</FileName>
</InvoiceXmlToHtmlRequest>

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.