POST api/CashRegister/Update

Request Information

URI Parameters

None.

Body Parameters

CashRegisterModel
NameDescriptionTypeAdditional information
ID

integer

None.

Name

string

Required

String length: inclusive between 0 and 50

CreatedAt

date

None.

UpdatedAt

date

None.

CreatedByUserID

integer

None.

OutletID

integer

Required

IsActive

boolean

None.

Outlet

string

None.

IsOpened

boolean

None.

UpdatePermission

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Name": "sample string 2",
  "CreatedAt": "2026-07-28T08:34:23.3456297+02:00",
  "UpdatedAt": "2026-07-28T08:34:23.3456297+02:00",
  "CreatedByUserID": 1,
  "OutletID": 1,
  "IsActive": true,
  "Outlet": "sample string 3",
  "IsOpened": true,
  "UpdatePermission": "sample string 4"
}

application/xml, text/xml

Sample:
<CashRegisterModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">
  <CreatedAt>2026-07-28T08:34:23.3456297+02:00</CreatedAt>
  <CreatedByUserID>1</CreatedByUserID>
  <ID>1</ID>
  <IsActive>true</IsActive>
  <IsOpened>true</IsOpened>
  <Name>sample string 2</Name>
  <Outlet>sample string 3</Outlet>
  <OutletID>1</OutletID>
  <UpdatePermission>sample string 4</UpdatePermission>
  <UpdatedAt>2026-07-28T08:34:23.3456297+02:00</UpdatedAt>
</CashRegisterModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CashRegisterResponse
NameDescriptionTypeAdditional information
CashRegisterModel

CashRegisterModel

None.

ResponseCode

integer

None.

ResponseText

string

None.

Response Formats

application/json, text/json

Sample:
{
  "CashRegisterModel": {
    "ID": 1,
    "Name": "sample string 2",
    "CreatedAt": "2026-07-28T08:34:23.3456297+02:00",
    "UpdatedAt": "2026-07-28T08:34:23.3456297+02:00",
    "CreatedByUserID": 1,
    "OutletID": 1,
    "IsActive": true,
    "Outlet": "sample string 3",
    "IsOpened": true,
    "UpdatePermission": "sample string 4"
  },
  "ResponseCode": 1,
  "ResponseText": "sample string 2"
}

application/xml, text/xml

Sample:
<CashRegisterResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Response">
  <ResponseCode xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">1</ResponseCode>
  <ResponseText xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">sample string 2</ResponseText>
  <CashRegisterModel xmlns:d2p1="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">
    <d2p1:CreatedAt>2026-07-28T08:34:23.3456297+02:00</d2p1:CreatedAt>
    <d2p1:CreatedByUserID>1</d2p1:CreatedByUserID>
    <d2p1:ID>1</d2p1:ID>
    <d2p1:IsActive>true</d2p1:IsActive>
    <d2p1:IsOpened>true</d2p1:IsOpened>
    <d2p1:Name>sample string 2</d2p1:Name>
    <d2p1:Outlet>sample string 3</d2p1:Outlet>
    <d2p1:OutletID>1</d2p1:OutletID>
    <d2p1:UpdatePermission>sample string 4</d2p1:UpdatePermission>
    <d2p1:UpdatedAt>2026-07-28T08:34:23.3456297+02:00</d2p1:UpdatedAt>
  </CashRegisterModel>
</CashRegisterResponse>