This endpoint retrieves a list of all available sale types, such as In-store, Delivery, and Takeaway. Sale types represent the fulfillment channel for an order (e.g., dine-in, delivery, takeaway) and may determine service charge behavior.Documentation Index
Fetch the complete documentation index at: https://developer.clopos.com/llms.txt
Use this file to discover all available pages before exploring further.
The
status object is a venue map. Its keys are venue_id strings and the
values indicate enablement at that venue: 1 = enabled, 0 = disabled.
For example, status["1"] = 1 means this sale type is enabled for
venue 1.- Create Order: provide
payload.service.sale_type_idandpayload.service.venue_id
Response Example
Field Reference
Sale Type Object
| Field | Type | Description |
|---|---|---|
id | integer | Unique identifier for the sale type. |
name | string | Display name of the sale type (e.g., “In-store”, “Delivery”). |
system_type | string | System-defined type identifier: IN, DELIVERY, TAKEAWAY. |
channel | string | Sales channel this type belongs to. |
status | object | Map of venue_id (string) to 0/1 indicating whether this sale type is enabled at each venue. |
service_charge_rate | number (nullable) | Service charge rate associated with this sale type, or null if none. |
position | integer | Display order position. |
media | array | Image attachments. See Media object. |
created_at | string | Creation timestamp (ISO 8601). |
updated_at | string | Last update timestamp (ISO 8601). |