POST api/v1/transactionitems/searchpackages
Request Information
URI Parameters
None.
Body Parameters
BranchTransactionPackageSearch| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CashProcessId | integer |
None. |
|
| CustomerId | integer |
None. |
|
| Packages | Collection of integer |
None. |
|
| Search | string |
None. |
|
| DateStart | date |
None. |
|
| DateEnd | date |
None. |
|
| Skip | integer |
None. |
|
| Take | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CashProcessId": 2,
"CustomerId": 3,
"Packages": [
1,
2
],
"Search": "sample string 4",
"DateStart": "2026-03-17T21:39:47.0546845-04:00",
"DateEnd": "2026-03-17T21:39:47.0546845-04:00",
"Skip": 5,
"Take": 6
}
application/xml, text/xml
Sample:
<BranchTransactionPackageSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Core.Models.Branches.Search">
<CashProcessId>2</CashProcessId>
<CustomerId>3</CustomerId>
<DateEnd>2026-03-17T21:39:47.0546845-04:00</DateEnd>
<DateStart>2026-03-17T21:39:47.0546845-04:00</DateStart>
<Id>1</Id>
<Packages xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</Packages>
<Search>sample string 4</Search>
<Skip>5</Skip>
<Take>6</Take>
</BranchTransactionPackageSearch>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModelOfListOfBranchTransactionPromotionalPackage| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | Collection of BranchTransactionPromotionalPackage |
None. |
|
| Pagination | Pagination |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.