downloadXml()
Fatture inviate/ricevute (XML): metodo per effettuare una ricerca in base all'ID fattura, identificativo SdI per scaricare il file originale in formato XML.
{info} Nel payload JSON, l'XML 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.
Endpoint
Method |
URI |
POST |
https://fatture.keliweb.it/api/download-xml |
Request Parameters
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 |
Response Parameters
Parameter |
Type |
Description |
xml [ciclo_attivo ][ciclo_passivo ] |
string |
XML da scaricare, codificato in base64 |
Example Request (BASH Curl)
curl --location --request POST 'https://fatture.keliweb.it/api/download-xml' \
--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6ImYxYTAzNzMzYzY5ZDQ3' \
--form 'invoiceId="1"'
Example Request (PHP Curl)
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://fatture.keliweb.it/api/download-xml',
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;
Example Request (jQuery AJAX)
var form = new FormData();
form.append("invoiceId", "1");
var settings = {
url: "https://fatture.keliweb.it/api/download-xml",
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);
});
Example Request (Python - Requests)
import requests
url = "https://fatture.keliweb.it/api/download-xml"
payload={'invoiceId': '1'}
files=[
]
headers = {
'Authorization': 'Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6ImYxYTAzNzMzYzY5ZDQ3ZDUxZDFiN'
}
response = requests.request("POST", url, headers=headers, data=payload, files=files)
print(response.text)
Example Response (JSON payload)
{
"xml": {
"ciclo_attivo": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPG5zMzpGYXR0dXJh",
"ciclo_passivo": {
"status": "NOT FOUND",
"message": "The URI requested is invalid or the resource requested does not exist.",
"code": 404
}
}
}