Fatture inviate/ricevute (PDF cortesia): metodo per effettuare una ricerca in base all'ID fattura, identificativo SdI per scaricare il file fattura cortesia in formato PDF.
{success} PDF in foglio di stile AssoSoftware oppure foglio di stile Keliweb.
{info} Nel payload JSON, il PDF cortesia viene codificato in
base64
. È un sistema di codifica che consente la traduzione di dati binari in stringhe di testo ASCII, rappresentando i dati sulla base di 64 caratteri ASCII diversi.
Method | URI |
---|---|
POST |
https://fatture.keliweb.it/api/download-pdf |
Parameter | Type | Description | Required |
---|---|---|---|
HTTP headers: Authorization |
string | Bearer + the token to access APIs |
Yes |
invoiceId |
integer | ID univoco della fattura (relativo al DB locale) | required_without:identificativoSdI , integer |
identificativoSdI |
integer | ID univoco della fattura dato dal SDI | required_without:invoiceId , integer |
Parameter | Type | Description |
---|---|---|
pdf [ciclo_attivo ][ciclo_passivo ] |
string | PDF da scaricare, codificato in base64 |
curl --location --request POST 'https://fatture.keliweb.it/api/download-pdf' \
--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6ImYxYTAzNzMzYzY5ZDQ3' \
--form 'invoiceId="1"'
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://fatture.keliweb.it/api/download-pdf',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => array('invoiceId' => '1'),
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6ImYxYTAzNzMzYzY5ZDQ3ZDUxZDFiNTA2M'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
var form = new FormData();
form.append("invoiceId", "1");
var settings = {
url: "https://fatture.keliweb.it/api/download-pdf",
method: "POST",
timeout: 0,
headers: {
Authorization:
"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6ImYxYTAzNzMzYzY5ZDQ3ZD"
},
processData: false,
mimeType: "multipart/form-data",
contentType: false,
data: form
};
$.ajax(settings).done(function(response) {
console.log(response);
});
import requests
url = "https://fatture.keliweb.it/api/download-pdf"
payload={'invoiceId': '1'}
files=[
]
headers = {
'Authorization': 'Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6ImYxYTAzNzMzYzY5ZDQ3ZDUxZDFiN'
}
response = requests.request("POST", url, headers=headers, data=payload, files=files)
print(response.text)
{
"pdf": {
"ciclo_attivo": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPG5zMzpGYXR0dXJh",
"ciclo_passivo": {
"status": "NOT FOUND",
"message": "The URI requested is invalid or the resource requested does not exist.",
"code": 404
}
}
}