POST api/ContabilizzaInPrimaNota
Contabilizza in prima nota le fatture passate tramite id.
Request Information
URI Parameters
None.
Body Parameters
DTOContabilizzaInPrimaNota| Name | Description | Type | Additional information |
|---|---|---|---|
| ListaIdDocumenti | Collection of integer |
None. |
|
| TipoDocumento | TipoDocumento |
None. |
Request Formats
application/json, text/json
Sample:
{
"ListaIdDocumenti": [
1,
2
],
"TipoDocumento": 1
}
Response Information
Resource Description
Collection of DTOPrimaNotaResult| Name | Description | Type | Additional information |
|---|---|---|---|
| IdDocumento | integer |
None. |
|
| IdPrimaNota | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"IdDocumento": 1,
"IdPrimaNota": 1
},
{
"IdDocumento": 1,
"IdPrimaNota": 1
}
]