Get
[POST] .../v1/pos/fastgroup/get
Returns quick item groups. Use this method to retrieve POS quick item groups shown on the cashier quick-sale screen. The request supports filters by group IDs and operating_cash_id; when operating_cash_id is not provided, the method uses the current accepted POS cash register and returns result with a RegosOnlineFastGroup array. 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 accepted cash register, lookup failures and storage errors are returned as HTTP 200 ErrorResult business errors.
Request Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| filters | Array of Filter | Optional | Optional filters by fields available for this API method. |
Filterable Fields
| Field | Type | Description |
|---|---|---|
| ids | int | Fast item group IDs. |
| operating_cash_id | int | Cash register ID. |
Request Example
{
"filters": [
{
"Field": "ids",
"Operator": "Equal",
"Value": "string"
}
]
}
Response Parameters
| Name | Type | Description |
|---|---|---|
| ok | Boolean | Indicates whether the request completed successfully. |
| result | Array of RegosOnlineFastGroup | Result object. |
Response Example
{
"ok": true,
"result": [
{
"id": 1,
"name": "string"
}
]
}