Menu Configuration
Get active stores by account.
URL:https://api.lingaros.com/v1/lingapos/account/{account_id}
curl -X POST \
-H "apikey: generated-api-key" \
https://api.lingaros.com/v1/lingapos/account/5c5981496bcf7500013afeb2 \
Pulling new menu configuration data.
Method | Type | Description |
---|---|---|
taxes | bool | Sets if taxes will be pulled or not. |
modifiers | bool | Sets if modifiers will be pulled or not. |
menuItems | bool | Sets if menu items will be pulled or not. |
discounts | bool | Sets if discounts will be pulled or not. |
displayGroup | bool | Sets if display group will be pulled or not. |
gratuity | bool | Sets if gratuity will be pulled or not. |
reason | bool | Sets if reason will be pulled or not. |
copyAll | bool | Sets if all will be copied or not. |
curl -X POST \
-H "apikey: generated-api-key" \
-H "Content-Type: application/json" \
-d '{
"taxes":true,
"modifiers":true,
"menuItems":true,
"discounts":true,
"displayGroup":true,
"gratuity":true,
"reason":true,
"copyAll":true
}' \
https://api.lingaros.com/v1/lingapos/store/5c5981496bcf7500013afeb0 \