Accept

[POST] .../v1/operatingcash/accept

Accepts a retail cash register for work Use this method to accept a retail cash register for the current request user before POS operations. It requires operating_cash_id and returns an empty object result on success after the persistent layer links the cash register to the current user. Missing body, invalid operating_cash_id, already accepted register restrictions, current-user state conflicts and persistent errors are returned as HTTP 200 ErrorResult business errors.

Request Parameters

Name Type Required Description
operating_cash_id Int64 Required Operating cash ID.

Request Example

{
  "operating_cash_id": 12
}

Response Parameters

Name Type Description
ok Boolean Indicates whether the request completed successfully.
result Object Result object.

Response Example

{
  "ok": true,
  "result": null
}