Simulate supplier invoice
POST /simulate/supplier-invoice
here you must send an invoice as the payload,
it will be delivered to your configured endpoints for the event supplier-invoice.
It doesn't matter the codice_destintario
, you will receive the invoice to your account.
The body must contain a valid Invoice payload.
You can send both JSON and XML invoices. Remember to specify it by using the Content-Type
header (application/json
or application/xml
).
Example:
curl -X POST
https://api-sandbox.acubeapi.com/simulate/supplier-invoice
-H 'Authorization: Bearer <Your Bearer token here>'
-H 'Content-Type: application/json'
-d '{
"fattura_elettronica_header": {
"dati_trasmissione": {
"codice_destinatario": "1234567"
},
"cedente_prestatore": {
"dati_anagrafici": {
"id_fiscale_iva": {
"id_paese": "IT",
"id_codice": "12345678901"
},
"anagrafica": {
"denominazione": "John Doe"
},
"regime_fiscale": "RF01"
},
"sede": {
"indirizzo": "Via di Qua, 1",
"cap": "20145",
"comune": "Milano",
"provincia": "MI",
"nazione": "IT"
}
},
"cessionario_committente": {
"dati_anagrafici": {
"id_fiscale_iva": {
"id_paese": "IT",
"id_codice": "09876543211"
},
"anagrafica": {
"denominazione": "Jane Doe"
}
},
"sede": {
"indirizzo": "Via di La, 2",
"cap": "20145",
"comune": "Milano",
"provincia": "MI",
"nazione": "IT"
}
}
},
"fattura_elettronica_body": [{
"dati_generali": {
"dati_generali_documento": {
"tipo_documento": "TD01",
"divisa": "EUR",
"data": "2018-07-10",
"numero": "1"
}
},
"dati_beni_servizi": {
"dettaglio_linee": [{
"numero_linea": 1,
"descrizione": "Descrizione articolo",
"prezzo_unitario": "10.00",
"prezzo_totale": "10.00",
"aliquota_iva": "22.00"
}],
"dati_riepilogo": [{
"aliquota_iva": "22.00",
"imponibile_importo": "10.00",
"imposta": "2.20"
}]
}
}]
}'