GET api/Operation?branchId={branchId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| branchId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Operation| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchId | integer |
None. |
|
| OperationId | integer |
None. |
|
| StartTime | date |
None. |
|
| EndTime | date |
None. |
|
| StartBy | string |
None. |
|
| EndBy | string |
None. |
|
| OpeningCash | decimal number |
None. |
|
| CashInDrawer | decimal number |
None. |
|
| CashIn | decimal number |
None. |
|
| CashOut | decimal number |
None. |
|
| CashBankIn | decimal number |
None. |
|
| CashCount | decimal number |
None. |
|
| CashSubmit | decimal number |
None. |
|
| Status | string |
None. |
|
| CashPayment | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"BranchId": 1,
"OperationId": 2,
"StartTime": "2025-11-17T14:49:08.3860172+08:00",
"EndTime": "2025-11-17T14:49:08.3860172+08:00",
"StartBy": "sample string 5",
"EndBy": "sample string 6",
"OpeningCash": 7.0,
"CashInDrawer": 8.0,
"CashIn": 9.0,
"CashOut": 10.0,
"CashBankIn": 11.0,
"CashCount": 12.0,
"CashSubmit": 13.0,
"Status": "sample string 14",
"CashPayment": 15.0
}
text/xml
Sample:
<Operation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudSysPOSWeb.Models"> <BranchId>1</BranchId> <CashBankIn>11</CashBankIn> <CashCount>12</CashCount> <CashIn>9</CashIn> <CashInDrawer>8</CashInDrawer> <CashOut>10</CashOut> <CashPayment>15</CashPayment> <CashSubmit>13</CashSubmit> <EndBy>sample string 6</EndBy> <EndTime>2025-11-17T14:49:08.3860172+08:00</EndTime> <OpeningCash>7</OpeningCash> <OperationId>2</OperationId> <StartBy>sample string 5</StartBy> <StartTime>2025-11-17T14:49:08.3860172+08:00</StartTime> <Status>sample string 14</Status> </Operation>