Delete
[POST] .../v1/pos/fastitem/delete
Deletes item from quick item groups. Use this destructive method to remove an item from a POS quick item group without deleting the catalog item itself. The request requires id, checks the current accepted POS cash register context and returns ok when the quick item link is deleted. 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 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 | Record ID. |
Request Example
{
"id": 1
}
Response Parameters
| Name | Type | Description |
|---|---|---|
| ok | Boolean | Indicates whether the request completed successfully. |
Response Example
{
"ok": true
}