POST Api/PdfFattura
Fattura in formato PDF per il documento richiesto (ID_DOC) per il codice cliente (cd_cliente) specificato Se non viene specificato documento (ID_DOC) vengono restituiti tutte le fatture PDF relative al codice cliente (cd_cliente)
Request Information
URI Parameters
None.
Body Parameters
PdfFatturaModel| Name | Description | Type | Additional information |
|---|---|---|---|
| token |
token generato dal metodo Login |
string |
Required |
| cd_cliente |
Codice cliente |
string |
Required |
| ID_DOC | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"cd_cliente": "sample string 2",
"ID_DOC": "sample string 3"
}
application/xml, text/xml
Sample:
<PdfFatturaModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AreaRiservataPE.Models"> <ID_DOC>sample string 3</ID_DOC> <cd_cliente>sample string 2</cd_cliente> <token>sample string 1</token> </PdfFatturaModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |