POST api/RegistraPagamentoInPrimaNota
Request Information
URI Parameters
None.
Body Parameters
Collection of DTORegistraInPrimaNota| Name | Description | Type | Additional information |
|---|---|---|---|
| IdCausaleContabile | integer |
None. |
|
| IdCliente | integer |
None. |
|
| ImportiLiberi |
Nel caso non ci sia una fattura contabilizzata |
Collection of decimal number |
None. |
| IdScadenze |
Nel caso ci sia la fattura contabilizzata |
Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"IdCausaleContabile": 1,
"IdCliente": 2,
"ImportiLiberi": [
1.0,
2.0
],
"IdScadenze": [
1,
2
]
},
{
"IdCausaleContabile": 1,
"IdCliente": 2,
"ImportiLiberi": [
1.0,
2.0
],
"IdScadenze": [
1,
2
]
}
]
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
}
]