PUT api/invoices/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
UpdateInvoiceDto| Name | Description | Type | Additional information |
|---|---|---|---|
| DueDate | date |
None. |
|
| DeliveryFee | decimal number |
None. |
|
| DiscountAmount | decimal number |
None. |
|
| TaxAmount | decimal number |
None. |
|
| Notes | string |
String length: inclusive between 0 and 2000 |
|
| Terms | string |
String length: inclusive between 0 and 2000 |
|
| Items | Collection of QuotationItemInputDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"dueDate": "2026-06-05T19:05:57.7159846+02:00",
"deliveryFee": 1.0,
"discountAmount": 2.0,
"taxAmount": 3.0,
"notes": "sample string 4",
"terms": "sample string 5",
"items": [
{
"description": "sample string 1",
"quantity": 2.0,
"unitPrice": 3.0
},
{
"description": "sample string 1",
"quantity": 2.0,
"unitPrice": 3.0
}
]
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.