Edit

[POST] .../v1/pos/fastgroup/edit

Edits quick item groups. Use this method to update the name or properties of an existing POS quick item group. The request requires id and name, checks the current accepted POS cash register context and returns ok when the group is updated. The method checks the current request user and requires an accepted cash register, while the controller does not perform a separate RBAC permission check; missing body, missing id, missing name, missing accepted cash register, not found and storage errors are returned as HTTP 200 ErrorResult business errors.

Request Parameters

Name Type Required Description
id Int64 Required Fast item group ID.
name String Optional Fast item group name.

Request Example

{
  "id": 1,
  "name": "string"
}

Response Parameters

Name Type Description
ok Boolean Indicates whether the request completed successfully.

Response Example

{
  "ok": true
}