Caricamento notifiche
è possibile allegare notifiche ad una fattura in 2 modi
Contemporaneamente al caricamento fattura
POST /v2/invoices
Il filename deve essere strutturato seguendo il naming SDI
...
"attachments": [
{
"fileName": "string",
"content": "base64"
}
],
...
Dopo il caricamento fattura
PATCH /v2/invoices/{hubId}/addNotification
Attenzione che il metodo HTTP è PATCH in quando va a modificare un entità già presente
Il filename deve essere strutturato seguendo il naming SDI
{
"notifications": [
{
"fileName": "string",
"content": "base64"
}
]
}