Store Status

Get store status

Retrieve or update a store’s online/offline status on connected food aggregators. Grubtech will use GET to read the current status and PUT to toggle status (e.g., temporarily go offline during outages).

get/stores/{storeId}/status

Path parameters

storeIdstring required

Unique identifier of the store in Grubtech. This may be the Grubtech store ID or your external mapping ID.

Response

Store status retrieved

status'online' | 'offline'

Online stores accept orders; offline stores are hidden or unavailable to customers.

Example response

{
  "status": "online"
}

Changes