POST api/Account/savebill
Request Information
URI Parameters
None.
Body Parameters
BillsPayableViewModels| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Vendor_ID | globally unique identifier |
None. |
|
| Vendor_Name | string |
None. |
|
| Payer_ID | string |
None. |
|
| Payer_Name | string |
None. |
|
| PaymentDate | date |
None. |
|
| BillAmount | decimal number |
None. |
|
| TDSPercent | decimal number |
None. |
|
| TDSAmount | decimal number |
None. |
|
| PaidAmount | decimal number |
None. |
|
| Remarks | string |
None. |
|
| Base64String | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"Vendor_ID": "cf7f0fe6-6820-4467-96f1-ff86b9aba13c",
"Vendor_Name": "sample string 2",
"Payer_ID": "sample string 3",
"Payer_Name": "sample string 4",
"PaymentDate": "2026-04-18T18:24:39.6402259+05:30",
"BillAmount": 6.0,
"TDSPercent": 7.0,
"TDSAmount": 8.0,
"PaidAmount": 1.0,
"Remarks": "sample string 9",
"Base64String": "sample string 10"
}
application/xml, text/xml
Sample:
<BillsPayableViewModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Yuso.ERP.API.Models"> <Base64String>sample string 10</Base64String> <BillAmount>6</BillAmount> <ID>1</ID> <PaidAmount>1</PaidAmount> <Payer_ID>sample string 3</Payer_ID> <Payer_Name>sample string 4</Payer_Name> <PaymentDate>2026-04-18T18:24:39.6402259+05:30</PaymentDate> <Remarks>sample string 9</Remarks> <TDSAmount>8</TDSAmount> <TDSPercent>7</TDSPercent> <Vendor_ID>cf7f0fe6-6820-4467-96f1-ff86b9aba13c</Vendor_ID> <Vendor_Name>sample string 2</Vendor_Name> </BillsPayableViewModels>
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.