POST register/ShiftTotals

Request Information

URI Parameters

None.

Body Parameters

ShiftTotals
NameDescriptionTypeAdditional information
RegisterID

string

None.

CashierID

string

None.

EmployeeID

string

None.

StartBank

decimal number

None.

EndBank

decimal number

None.

CashSales

decimal number

None.

CashReported

decimal number

None.

CheckSales

decimal number

None.

CheckReported

decimal number

None.

CreditSales

decimal number

None.

CreditReported

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "RegisterID": "sample string 1",
  "CashierID": "sample string 2",
  "EmployeeID": "sample string 3",
  "StartDate": "05-18-2024 11:09:56",
  "EndDate": "05-18-2024 11:09:56",
  "StartBank": 6.0,
  "EndBank": 7.0,
  "CashSales": 8.0,
  "CashReported": 9.0,
  "CheckSales": 10.0,
  "CheckReported": 11.0,
  "CreditSales": 12.0,
  "CreditReported": 13.0
}

application/xml, text/xml

Sample:
<ShiftTotals xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RegisterService.Models">
  <CashReported>9</CashReported>
  <CashSales>8</CashSales>
  <CashierID>sample string 2</CashierID>
  <CheckReported>11</CheckReported>
  <CheckSales>10</CheckSales>
  <CreditReported>13</CreditReported>
  <CreditSales>12</CreditSales>
  <EmployeeID>sample string 3</EmployeeID>
  <EndBank>7</EndBank>
  <EndDate>05-18-2024 11:09:56</EndDate>
  <RegisterID>sample string 1</RegisterID>
  <StartBank>6</StartBank>
  <StartDate>05-18-2024 11:09:56</StartDate>
</ShiftTotals>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ShiftTotals'.

Response Information

Resource Description

JsonResultOfShiftTotals
NameDescriptionTypeAdditional information
Content

ShiftTotals

None.

SerializerSettings

JsonSerializerSettings

None.

Encoding

Encoding

None.

Request

HttpRequestMessage

None.

Response Formats

application/json, text/json

Sample:

Sample not available.