PUT api/Billing/UpdateBilling/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
UpdateBillingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Date | date |
None. |
|
| DueDate | date |
None. |
|
| PaymentDate | date |
None. |
|
| IsPaid | boolean |
None. |
|
| IsBill | boolean |
None. |
|
| IsInvoice | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Date": "2025-10-29T09:58:19.0720668Z",
"DueDate": "2025-10-29T09:58:19.0730641Z",
"PaymentDate": "2025-10-29T09:58:19.0730641Z",
"IsPaid": true,
"IsBill": true,
"IsInvoice": true
}
application/xml, text/xml
Sample:
<UpdateBillingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdminCore.ViewModels"> <Date>2025-10-29T09:58:19.0720668Z</Date> <DueDate>2025-10-29T09:58:19.0730641Z</DueDate> <IsBill>true</IsBill> <IsInvoice>true</IsInvoice> <IsPaid>true</IsPaid> <PaymentDate>2025-10-29T09:58:19.0730641Z</PaymentDate> </UpdateBillingModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.