POST api/sales/invtransactions
Request Information
URI Parameters
None.
Body Parameters
InvTransactionsRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchID | integer |
None. |
|
| FinancialYearID | integer |
None. |
|
| VoucherType | string |
None. |
|
| FromDate | date |
None. |
|
| ToDate | date |
None. |
|
| VoucherForm | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"BranchID": 1,
"FinancialYearID": 2,
"VoucherType": "sample string 3",
"FromDate": "2025-12-18T23:09:18.4221496-08:00",
"ToDate": "2025-12-18T23:09:18.4221496-08:00",
"VoucherForm": "sample string 6"
}
application/xml, text/xml
Sample:
<InvTransactionsRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CrushMateBackendAPI.Controllers"> <BranchID>1</BranchID> <FinancialYearID>2</FinancialYearID> <FromDate>2025-12-18T23:09:18.4221496-08:00</FromDate> <ToDate>2025-12-18T23:09:18.4221496-08:00</ToDate> <VoucherForm>sample string 6</VoucherForm> <VoucherType>sample string 3</VoucherType> </InvTransactionsRequestModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.