Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Please see the page for more info on the planned changes in validation.
To be able to communicate with the API v2, you need to fill the . Please fill all data carefully.
After the successful registration, we will contact you to find missing details about your Application and issue the Client ID and Client Secret what is .
We will also provide you License key for testing purposes. This license key should be used for creation of testing Cloud and testing of your integration. will also create new Cloud, which can be used as testing.
To perform this, you need to install Dotykacka Application and Activate your license. A detailed guide is available in our .
Please read the section to understand the basic concepts of the API, available common features and schema descriptions used in this manual.
The API endpoints are grouped by the entity which they manage. If you are looking for a specific endpoint from the former API v1 the migrations are described in .
For easier implementation, we have prepared the , which will be gradually improved. If you are looking for library for easier integration of API v2, see the section.
Please see the page for more info on the planned changes in validation.
Best place to start is or .
Login and authorization flows
The Client Application is used to the differentiation of API usages and allows you to offer the same integration for multiple independent customers.
To use the API you need to obtain the Refresh Token first.
To retrieve the Refresh Token, you need to redirect the user from your application to the connector web page where the user has to allow access for your application (see the screenshot below). After granting the access, the user will be redirected to the webhook redirect_uri
with query parameters which contain the Refresh Token.
To obtain the Refresh Token you have to redirect the user to the following web page where the user grants access to your application:
https://admin.dotykacka.cz/client/connect
(+ query parameters, see below)
The above URL is not a REST API endpoint. It has to be opened using a web browser to allow users to interact with the page. Your application can start a browser directed to the URL including the query parameters.
All query parameters except state
are required.
client_id
client_secret
scope
Scope of requested access
*
is the only supported value now
redirect_uri
Indicates the URI to return the user to after registration is complete
state
(optional)
This is the full web URL to redirect users to for granting access to your application and obtaining the Refresh Token:
https://admin.dotykacka.cz/client/connect?client_id={client_id}&client_secret={client_secret}&scope=*&redirect_uri={webhook}&state=my-state
redirect_uri
webhookAfter granting access the user will be redirected to the provided redirect_uri
with the following query parameters:
token
Refresh Token
cloudid
Selected Cloud ID
state
CSRF parameter provided in redirect request
(provided only if presented in redirect request)
If you are using the first version (deprecated now) of the API you need to retrieve new Refresh Token. API v2 Refresh Token is not compatible with API v1 token format.
To call any of the authenticated API v2 endpoints you need to obtain the Access Token first.
POST
https://api.dotykacka.cz/v2/signin/token
Returns Access Token for a provided Refresh Token. Default validity of Access Token is one hour (not guaranteed). The request body must be in the JSON format (form-data is not accepted and returns error).
Authorization*
string
User $refreshToken
_cloudId
string
Cloud ID, should be specified to get access to the most endpoints
To get access to all endpoints (standard use-case) you need to retrieve the Access Token for the specific cloud. This is done by specifying the cloud ID in the request JSON body.
For each API v2 authenticated request, you need to include the Access Token in the HTTP request headers:
Authorization: Bearer {AccessToken}
This is described with every endpoint method in the documentation.
To access the API v2 you need to create Client Application and obtain Client Application credentials. Please follow the .
The Client ID and Client Secret is used only to connect your Application with the of Dotypos User. Provided Client ID and Client Secret should be kept private and used only for the connection of your Application.
TIP: For your first steps you can use our .
This Refresh Token should be stored safely in your application and used for required for all authenticated API endpoints.
Client ID ()
Client Secret ()
A value used to maintain state between the request and callback. The parameter is used to protect against (CSRF)
In some special cases you may want to get an Access Token without specifying the cloud ID. To do this, send an empty JSON object in the request body. Such token allows you only to . Access to all other endpoints with _cloudId
in the URI will be denied.
The returned Access Token will allow you to access the specified cloud only. To obtain access into another cloud you need to call the again with a new cloud ID in the JSON body and use the new Access Token to call endpoints for this cloud.
Please see the page for more info on the planned changes in validation.
Most of the values representing price are stored as a double precision internally. That means that the numbers have a 15 decimal digits precision.
Do not round any price value when creating or updating an entity. The prices are usually rounded when they are shown in the Dotykacka Application, but they should be stored as precise as possible in the entities. The difference can be unnoticeable for small amounts of goods, but it can result in rounding errors for many items when a report is calculated for a wider time interval.
Let's demonstrate the difference on a product of sell price 50 CZK with 21% VAT. If you set the price without VAT:
not rounded, i.e. 41.3223140495868 CZK, then you sell 1,000 pcs for 50,000 CZK (expected)
rounded on 2 places, i.e. 41.32 CZK, then you sell 1,000 pcs for 49,997 CZK (41.32*1.21*1000)
Here the difference of 3 CZK is quite visible so we advise setting precise prices without rounding.
Electronic delivery notes and Remittances are primarily for suppliers to provide their customers with electronic delivery notes and remittances, and easy stock in.
Purpose of this guide is to ease the integration of a supplier's system with the Dotykacka platform. The customers can then benefit from a smooth cooperation between the two systems which will save their time otherwise consumed by updating products and stock quantities in a delivery note manually item-by-item.
The supplier prepares the delivery note XML and uploads it via the API2 (steps to setup and invoke the API2 are described in this guide).
When the XML document is uploaded, it will show up in the customer's Warehouse application.
From there, optionally, the customer can alter selling prices and quantities before confirming to stock in the items.
When confirmed, the application will automatically update product prices and quantities of stock items in the customer's warehouse and it will also set the delivery note status to Stacked.
We will provide you a Client ID and Client Secret, and a testing license key.
The steps in this section are very simplified to help you to experiment with the API as quickly as possible but should not be used in production.
For testing, create a new Dotypos Account with the provided testing license key.
Prepare the connector URL (replace variables {}
with client ID and secret):
https://admin.dotykacka.cz/client/connect?client_id={client_id}&client_secret={client_secret}&scope=*&redirect_uri=https://dotykacka.cz
Open the URL in a browser and grant access to your testing cloud.
Note down the Refresh Token returned in the URL after you get redirected to dotykacka.cz
(redirect URL: https://dotykacka.cz?token={RefreshToken}&cloudid={cloudId}
)
Here are some hints to make your application better prepared for the production.
Your application should generate the connector URL query parameters and use the full URL to redirect users automatically.
The redirect_uri
in the connector URL should be an URL of your webhook that will process the response.
The Refresh Token should be stored safely in your application (never expires).
send API request POST https://test.api.dotykacka.cz/v2/signin/token
with header: Authorization: User {RefreshToken}
and header: Content-Type: application/json
and JSON body: { "_cloudId": {cloudId} }
parse the response body (JSON) so as to get the value for the key "accessToken
"
is valid for a limited time only and when it expires, it must be renewed via this endpoint again.
allows access only to the Cloud ID specified in the body of the request that returned it.
must be specified when calling any other API v2 endpoint in the headers:
Authorization: Bearer {AccessToken}
During the development stage of your integration code you can call the following endpoint to check you have the right access token with access to the given cloud:
GET https://api.dotykacka.cz/v2/clouds/{cloudId}
Do not forget to add the request header Authorization: Bearer {AccessToken}
If it responds with http status 200 and a cloud info in the body, then you are prepared and ready to call other endpoints.
It is not needed to check the access in production code so we recommend skipping this step for a better performance of your integration code.
You can upload a delivery note in a XML format by using the API call.
Call: POST /v2/clouds/{cloudId}/branches/{branchId}/delivery-note-uploads
You can manage, filter and sort products by using the API calls.
Description of entities, request and response objects.
A schema describes Entity, Request, Response, etc objects. Specific properties data type, required fields, filter groups, sort options and describes special cases. Schema is split into two blocks - the first block describes individual fields and the second shows the JSON format.
The example below shows some object properties with descriptions.
id
long
Entity ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
🔽 NONE
deleted
boolean
Entity deleted
📶 EQUALS
,ENUM
🔽 NONE
externalId
string?
External ID
📶 EQUALS
,ENUM
🔽 NONE
name
string(180)
Entity name
📶 EQUALS
,STRING
🔽 BOTH
Properties of data types followed by question mark (?) are optional. All other properties are mandatory. In special cases there can be a note mark with a number.
Property data type
Descriptiion
name
string
NOT NULL
externalId
string?
OPTIONAL
id
long [1]
Special case with group 1 description below
firstName
string? [2]
Special case with group 2 description below
lastName
string? [2]
Special case with group 2 description below
companyName
string? [2]
Special case with group 2 description below
[1] ID cannot be null in PUT/PATCH methods [2] One of properties firstName, lastName, companyName cannot be BLANK / EMPTY but other can be EMPTY.
Value
Description
string(400)
String with maximum length of 400
string(200,250)
String length between 200 to 250
string[]
Array of strings
string[1,100]
Array of strings with item count between 1 to 100
string[](1000)
Array of strings with maximum length of 1000 in joined string (with separators)
Some properites have special validation rules.
Timestamp (timestamp) values in filters and in the request body are accepted in these formats:
All numbers (short, integer, double, long) in the response are represented as strings for safe compatibility with JavaScript or systems with no support for long numbers.
ETags ensure atomicity of changes, bring control over possible problems, and they transfer the responsibility for the solutions to the integrators.
The ETag response-header field is an identifier of the current version of the entity or entities.
The If-None-Match request-header field helps save bandwidth, as the API does not need to resend a full response if the content has not changed.
The If-Match request-header field helps prevent simultaneous updates of a resource from overwriting by a third party.
The API returns the "ETag" header in the response of all entity-based endpoints for all HTTP methods.
Some endpoints require "If-Match" or support "If-None-Match" headers in the request. Use the GET method to obtain the current ETag value.
GET - support "If-None-Match" header and return empty response if entities have not been changed.
POST - no ETag value is required or supported in the request headers.
PUT, PATCH - require the ETag value in the "If-Match" header and fail if entities were changed.
DELETE - no ETag value is now required in the "If-Match" header (temporal only - will be required).
When sending a list of entities via the PUT/PATCH method, make sure their IDs and their order are the same as in the GET response which was used to obtain the ETag for this PUT request.
200 OK (Any method when finished successfully)
304 Not Modified (GET method with "If-None-Match" header if the entity has not been changed)
404 Not Found (GET method did not find any matching entity)
409 Conflict (PUT/PATCH method on entity failed "versionDate" verification)
412 Precondition Failed (PUT/PATCH method with "If-Match" header when entity has been changed)
428 Precondition Required (PUT/PATCH method was not called with ETag in the "If-Match" header)
500 Internal Server Error (Any method unexpectedly failed)
Almost all endpoints what returns list of data. Supports filter query parameter with paging combination.
filter=attribute|operation|value;attribute2|operation|value
Only specific properties support some filter groups.
null
valuesTo filter null or not null values a special keywords were introduced. They can be used in the filter in the place of a value.
These special values cannot be used for the deleted
attributes. See the next paragraph for more information.
deleted
There is a special behavior for filtering attributes deleted
. The keywords "null" and "notnull" are not supported. The null values are considered as "not deleted" automatically, so there is no need to support null and not null filtering. If you ask the API to return not deleted entities only, it will automatically return entities with deleted false or deleted null. See the examples below.
Should you have any questions or issues with the integration do not hesitate to ask us via e-mail
Fill in the .
(install Dotykacka Application and Activate your license - more info in the )
Use the state
parameter in the connector URL to avoid CSRF ().
We recommend reading the section in this documentation for more details that apply to most of the .
The XML document () must be a valid and according to the mentioned . Put it as a value for the key named file
in a form-data request body.
Document id
attribute must be a valid in the form "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx".
More details about the endpoint and a sample XML document .
All info about .
describes the fields and their data types.
The GET endpoints return a or a
You can read more about , and in the General section.
The POST endpoint allows to .
The PATCH endpoint is to .
The PUT endpoint can create (like POST) or edit (like PATCH) or products.
Please do not round any price values ()
Please see the page for more info on the planned changes in validation.
We recommend to read more about since they are mandatory when editing entities.
_cloudId
integer
🔽 NONE
_eetSubjectId
long?
📶 EQUALS
,ENUM
🔽 NONE
flags
integer
Entity flags - see
📶 BITS
🔽 NONE
📶 allowed for a field 🔽 available for a field
The URL structure is loosely validated, leading white-spaces are ignored, the protocol is optional but it must be http or https when specified. The regex also accepts URLs that can be invalid according to the standards so make sure a working URL is provided and then verify any functionality using this URL works as expected (f.e. ).
long integer indicating the (00:00:00 UTC on 1st January 1970)
date-time in the UTC time zone in formatYYYY-MM-DDThh:mm:ss.SSSZ
date-time with a custom time zone YYYY-MM-DDThh:mm:ss.SSS+01:00
Please see .
All status codes can be found .
Type
Size
short
2 bytes
integer
4 bytes
float
4 bytes
double
8 bytes
long
8 bytes
Group
Operations
EQUALS
eq, ne
NUMBER
gt, gteq, lt, lteq
STRING
like
ENUM
in
BITS
bin, bex
Operation
Full name
Example
SQL representation
gt
Greater than
price|gt|499.9
price > 499.9
gteq
Greater than or equals
price|gteq|500
price >= 500
lt
Less than
price|lt|100
price < 100
lteq
Less than or equals
price|lteq|50
price <= 50
eq
Equals
type|eq|sale
type = 'sale'
ne
Not equal
type|ne|sale
type != 'sale'
like
Contains text (case insensitive)
name|like|text
name ILIKE '%text%'
in
Is in a set
externalId|in|3,5
externalId IN (3, 5)
notin
Is not in a set
externalId|notin|42
externalId NOT IN (42) OR externalId IS NULL
bin
Bits are set in a bit field
flags|bin|17
flags & 17 = 17
bex
Bits not set in a bit field
flags|bex|15
flags & 15 = 0
null
eq, ne, in, notin
externalId|eq|null
externalId IS NULL
notnull
eq, ne, in, notin
externalId|eq|notnull
externalId IS NOT NULL
Get only deleted items
filter=deleted|eq|true
Get all items (deleted and not deleted)
filter=deleted|in|0,1
Get items not deleted and those with deleted not set (is null) - this filter is used by default when no custom filter specified
filter=deleted|eq|false
or
filter=deleted|ne|true
Get items with externalId set to any non-null value
filter=externalId|eq|notnull
Get items with externalId not set (is null)
filter=externalId|eq|null
Get items with externalId not set or different from 3, 5, 7
filter=externalId|notin|3,5,7
Get items with externalId equal to 9 or not set (null)
filter=externalId|in|9,null
Get items with price from range <500, 1000>
filter=price|gteq|500;price|lteq|1000
Get items with created date in interval (left boundary - inclusive, right - exclusive)
filter=created|gteq|FROM;created|lt|TO
Flags are one or more boolean values stored in a single number field.
This page lists all known flags for each entity which has a flags field. The numbers shown next to each flag are bit ordinal numbers counted from the least significant bit. If a bit is set (1) in the flags field then the corresponding flag is set. If the bit is not set (0) then the flag is not set.
Let's have an entity with flags equal to 257 (the API expects a decimal representation). So 257 = 2^8 + 2^0 meaning that flags for bits 0 and 8 are set, all others are unset.
Keep in mind that when you change a single flag via the PATCH or PUT methods you must keep other flags unchanged. If you send only the value corresponding to a single flag all other flags will be cleared (unset).
To get the flag value from the bit ordinal number take 1 and shift it left by the bit number, i.e. 1^bit
Example: value for bit 8 flag, Java syntax:
To check if a flag is set do a binary AND operation with the flag value and compare the result with a zero, i.e. flags AND 1^bit != 0
Example: flags = 257, checking bit 8 flag, Java syntax:
To set a flag while keeping state of other flags you can use the binary OR operation with the flag value, i.e. flags = flags OR 1^bit
Example: setting bit 8 flag, Java syntax:
To unset a flag while keeping state of other flags you can use the binary AND operation with a binary complement of the flag value, i.e. flags = flags AND NEG 1^bit
Example: clearing bit 8 flag, Java syntax:
To toggle a flag while keeping state of other flags you can use the binary XOR operation with the flag value, i.e. flags = flags XOR 1^bit
Example: toggling bit 8 flag, Java syntax:
With paging query parameters you can change the size of response data array and iterate response loading.
Examples: page=1
, page=1&limit=20
currentPage
Int
The current page.
perPage
Int
Maximum items (limit) on a page.
totalItemsOnPage
Int
Number of items on the actual page.
totalItemsCount
Int?
Total items count for the whole data. It may be null for some entities [1].
firstPage
Int
The first page. It should always be equal to 1.
lastPage
Int?
The last page. It can be null for some entities [1].
It will be equal to 0 in the future if there are no data but now the API2 returns HTTP 404 Not Found.
nextPage
Int?
The next page or null if on the last page.
prevPage
Int?
The previous page or null if on the first page.
data
List
The list of entities.
[1] Some endpoints do not count all the records because it would negatively impact the performance. Endpoints for the following entities return totalItemsCount=null
and lastPage=null
currently (but it can change in the future):
In such situations you can advance to the next page and repeat until you get a result with totalItemsOnPage < perPage
or an HTTP error 404 Not Found.
List of supported payment methods
Please be aware, that the list of payment methods is not complete and you can expect more values in responses.
All described payment methods can be used for requests with payment.
Query parameter
Description
Default
Range
page
Selected page
1
(1, ...)
limit
Max items on a page (step).
20
(1, 100)
Description
Page query parameters
Page 2, data per 20 items
page=2&limit=20
Page 3, default limit
page=3
Name
ID
Cash
900000001
Credit card
900000002
Check
900000003
Meal voucher
900000004
Bank transfer
900000009
Electronic food vouchers
900000010
Gift card/Voucher
900000011
Write-off
900000012
SumUp
900000014
Uber Eats
900000016
Vyzvednisi Online
900000017
QR code
900000018
Online
900000019
Room
900000020
Cash machine
900000021
Multisport
900000022
Qerko
901000001
Corrency
901000002
Bolt Food
901000003
Wolt
901000004
Speedlo
901000005
Choice QR
901000006
Previo
901000007
Foodora
901000008
Foodora (cash)
901000009
Slevomat
901000010
Zlavomat
901000011
Pyszne
901000012
Glovo
901000013
Apetigo
901000014
Bistro.sk
901000015
Order
Expression
ASC
attribute
DESC
-attribute
Description
Sort query parameter
Sort by name ASC
sort=name
Sort by name DESC
sort=-name
Sort by created DESC and name ASC
sort=-created,name
HTTP
Status Code
Meaning
Possible Reason(s)
200
OK
Any method finished successfully
201
Created
POST method on an entity inserted new data successfully
"reason"
"status"
Meaning / more detailed reason
INVALID_AUTH_HEADER
401
The Authorization header is missing or has an invalid value.
INVALID_REFRESH_TOKEN
401
The refresh token is invalid (not found).
BAD_REGISTRATION
401
Internal error - call the support.
UNAUTHORIZED
401
Not authorized with no specific reason given.
AUTHENTICATION_FAILED
401
Generic authentication error - call the support.
INVALID_ACCESS_TOKEN
403
The access token cannot be parsed or the signature verification failed.
ACCESS_TOKEN_EXPIRED
403
The access token has expired. Sign in again.
CLOUD_FORBIDDEN
403
The access to the given cloud is not allowed.
DOMAIN_FORBIDDEN
403
The access to the endpoint path is not allowed.
ACCESS_DENIED
403
The access is denied with no specific reason given.
AUTHORIZATION_FAILED
403
Generic authorization error - call the support.
HTTP
Status Code
Meaning
Possible Reason(s)
500
Internal Server Error
Any method unexpectedly failed
501
Not Implemented
Feature has not been implemented yet.
HTTP
Status Code
Meaning
Possible Reason(s)
304
Not Modified
HTTP
Status Code
Meaning
Possible Reason(s)
400
Bad request
Invalid body, query parameter or path parameter
An entity in the request body failed a validation
401
[1]
Authentication error
Missing or invalid "Authorization" header
403
[1]
Authorization error
Invalid or expired access token (JWT)
Insufficient permissions
404
Invalid or non-existent resource ID
GET method did not find any entity matching the filter
405
Method Not Allowed
409
Conflict
PUT or PATCH method on an entity if the "versionDate" verification fails
412
Precondition Failed
428
Precondition Required
429
Too Many Requests
Status name
Parameter name
New
new
Parked
parked
Ready to pickup
ready_to_pickup
Ready for delivery
ready_for_delivery
On delivery
on_delivery
Delivery failed
delivery_failed
Canceled
canceled
Closed
closed
Unknown
Order is newly created, but not parked yet.
Order is created and parked (saved).
Transition
End status
prepare_for_delivery
prepare_to_pickup
Order is ready to onsite pickup by customer.
Transition
End status
complete_pickup
cancel_pickup
Order is ready and waiting for delivery
Transition
End status
start_delivery
cancel_delivery
Order is beeing delivered
Transition
End status
complete_delivery
cancel_delivery
Order is delivered to customer
Order delivery failed
Order was canceled
Order is closed and issued. In case of pickup or delivery - order is picked or delivered to customer.
Transition
End status
prepare_for_delivery
prepare_to_pickup
Fallback status
id
integer?
Attendance ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
🔽 NONE
created
timestamp?
Attendance created date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
event
enum
Attendance event, one of: LOGIN, LOGOUT, CHECK_IN, CHECK_OUT, PAUSE, PAUSE_END
📶 EQUALS
, ENUM
🔽 NONE
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/attendances
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/attendances/:attendanceId
id
long?
Category ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
🔽 NONE
deleted
boolean
Category deleted - cannot be true in POST/PUT/PATCH methods
📶 EQUALS
, ENUM
🔽 BOTH
display
boolean
Category displayed
📶 EQUALS
, ENUM
🔽 BOTH
externalId
string?
External ID
📶 EQUALS
,ENUM
🔽 NONE
flags
long
Category flags
📶 BITS
🔽 NONE
hexColor
string(7)
Category color
margin
string?(180)
Category margin
maxDiscount
double?
Max discount
modifiedBy
string?(32)
Category modified by
name
string(180)
Category name
📶 STRING
🔽 BOTH
sortOrder
long?
Category sort order
🔽 BOTH
tags
string[]?
Tags list for employee
📶 EQUALS
, ENUM
translatedName
map<string, string>?
A mapping of language codes to translated category names.
🔽 NONE
vat
double?
VAT value (a multiplier from range <1.0; 2.0>, f.e. vat=1.234
corresponds to VAT 23.4%)
For VAT payers this value is validated and it must correspond to one of the configured VAT rates.
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/categories
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/categories/:categoryId
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/categories
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/categories
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/categories/:categoryId
PATCH
https://api.dotykacka.cz/v2/clouds/:cloudId/categories/:categoryId
DELETE
https://api.dotykacka.cz/v2/clouds/:cloudId/categories/:categoryId
Category cannot contains any non-deleted products (deleted=false). Only empty category can be deleted. Move products from category via GET/PUT methods. For GET method usefilter=deleted|eq|false;_categoryId|eq|:categoryId
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/categories
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/categories/:categoryId
id
integer?
Branch ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
🔽 NONE
created
timestamp?
Branch created date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
deleted
boolean
Branch deleted - cannot be true in POST/PUT/PATCH methods
📶 EQUALS
, ENUM
🔽 BOTH
display
boolean
Branch displayed
📶 EQUALS
, ENUM
🔽 BOTH
features
long
Branch features
📶 BITS
🔽 NONE
flags
short
Branch flags
📶 BITS
🔽 NONE
name
string(100)
Branch name
🔽 NONE
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/branches
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/branches/:branchId
: GET method with "If-None-Match" header if an entity has not been changed
: PUT or PATCH method with "If-Match" header if an entity has been changed
: PUT or PATCH method on an entity called without the "If-Match" header
_branchId
integer
📶 EQUALS
,ENUM
🔽 NONE
_cloudId
integer
🔽 NONE
_employeeId
long
📶 EQUALS
,ENUM
🔽 NONE
See the section for more information.
Please see the page for more info on the planned changes in validation.
_cloudId
integer
_defaultCourseId
long?
📶 EQUALS
,ENUM
_eetSubjectId
long?
📶 EQUALS
,ENUM
🔽 NONE
_cloudId
integer
🔽 NONE
See the section for more information.
cloudId*
integer
page
integer
limit
integer
filter
string
sort
string
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
cloudId*
integer
attendanceId*
long
If-None-Match
string
Add ETag to return results only if changed.
Authorization*
string
Bearer accessToken
Bit
Name
8
FISCALIZATION_DISABLED
cloudId*
integer
page
integer
limit
integer
filter
string
sort
string
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
categoryId*
integer
cloudId*
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
cloudId*
integer
Authorization*
string
Bearer accessToken
array
Array of categories. Maximum size 100.
cloudId*
integer
If-Match
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
array
Array of categories. Maximum size 100.
categoryId*
integer
cloudId*
integer
If-Match
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
object
Category
categoryId*
integer
cloudId*
integer
If-Match*
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
categoryId*
integer
cloudId*
integer
If-Match
string
ETag ignored (temporarily) when deleting an entity.
Authorization*
string
Bearer accessToken
cloudId*
integer
Authorization*
string
Bearer accessToken
categoryId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
Bit
Name
0
SUBSTITUTING_BRANCH
1
REPLACED_BRANCH
8
HIDE_STOCK
9
HIDE_PRICES
10
FREE_LICENSE
cloudId*
integer
page
integer
limit
integer
filter
string
sort
string
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
cloudId*
integer
branchId*
integer
If-None-Match
string
Add ETag to return results only if changed.
Authorization*
string
Bearer accessToken
id
integer?
Cloud ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
🔽 NONE
1ClickId
integer?
1Click ID
📶 EQUALS
,ENUM
🔽 NONE
_companyId
long?
Company ID
📶 EQUALS
,ENUM
🔽 NONE
country
string?(3)
Country code
🔽 NONE
deleted
boolean
Cloud deleted - cannot be true in POST/PUT/PATCH methods
📶 EQUALS
, ENUM
🔽 BOTH
expired
boolean
Cloud expired
📶 EQUALS
, ENUM
name
string(255)
Cloud name
📶 EQUALS
,STRING
🔽 BOTH
restricted
boolean
Cloud restricted
📶 EQUALS
, ENUM
segment
string?(100)
Cloud segment
🔽 NONE
GET
https://api.dotykacka.cz/v2/clouds
page
integer
limit
integer
filter
string
sort
string
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
GET
https://api.dotykacka.cz/v2/clouds/:cloudid
cloudid*
string
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Defines a transaction on a customer account.
Please note that for credit operations, it is the responsibility of the integrator to create tax documents.
_cloudId
integer
Cloud ID
📶 EQUALS
,ENUM
_customerAccountId
long?
Customer account ID
📶 EQUALS
,ENUM
_employeeId
long?
Employee ID
📶 EQUALS
,ENUM
_moneyLogId
long?
Money log ID
📶 EQUALS
,ENUM
_orderId
long?
Order ID
📶 EQUALS
,ENUM
_previousCustomerAccountLogId
long?
Previous customer account log ID
📶 EQUALS
,ENUM
amount
BigDecimal
The amout of the transaction
📶 NUMBER
balance
BigDecimal
The account balance after the transaction
📶 NUMBER
created
timestamp
Timestamp of created record
📶 EQUALS
,ENUM
,NUMBER
currency
string
Three-letter currency according to ISO 4217
📶 STRING
🔽 BOTH
id
long
Customer account log ID
📶 EQUALS
,ENUM
note
string
Custom note for the transaction
source
string
Identification of the source where the transaction took place
type
enum
Account log type, supported values: "top-up"
, "payment"
, "refund"
📶 STRING
🔽 BOTH
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/customer-account-logs
This EP requires an existing customer account as specified by _customerAccountId
.
cloudId*
integer
Authorization*
string
Bearer accessToken
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/customers/:customerId/accounts/:accountType/logs
If the customer does not have the default account, create it first. Then create the account log.
cloudId*
integer
customerId
long
accountType
string
valid value: default
Authorization*
string
Bearer accessToken
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/customers/:customerId/accounts/:accountType/logs
cloudId*
integer
customerId
long
accountType
string
valid value: default
Authorization*
string
Bearer accessToken
sort
string
page
integer
filter
string
limit
integer
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/customers/:customerId/accounts/:accountType/logs/:customerAccountLogId
cloudId*
integer
customerId
long
accountType
string
valid value: default
customerAccountLogId
long
Authorization*
string
Bearer accessToken
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/customer-account-logs/:customerAccountLogId
cloudId*
integer
customerAccountLogId
long
Authorization*
string
Bearer accessToken
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/customer-account-logs
cloudId*
integer
Authorization*
string
Bearer accessToken
sort
string
page
integer
filter
string
limit
integer
These examples illustrate the basic use-cases on working with ETags.
For example the first GET will return ETag: "1234"
in the response headers and a list of entities:
Now we add a new header If-None-Match: "1234"
and send the request again. There are two possible outcomes depending on whether the data have been modified by someone else or not at all.
1. At least a single entity from the list has been modified by someone else
The API responds with a new value in the ETag header ETag: "5678"
and returns all entities (those not modified as well).
2. No entities from the list have been modified by someone else
The API responds with HTTP status code 304 Not modified and returns an empty response.
First we need to call GET to obtain the latest ETag and a list of entities. For example the API responds with ETag: "1234"
in the headers and a list of entities:
We modify the data and prepare a PUT request. We also add the ETag value into the If-Match: "1234"
header. For example we modify a single value:
When sending a list of entities via the PUT/PATCH method, make sure their IDs and their order are the same as in the GET response which was used to obtain the ETag for this PUT request.
There are two possible outcomes depending on whether the data have been modified by someone else or not at all.
1. At least a single entity from the list has been modified by someone else
The API responds with HTTP status code 412 Precondition Failed and no data will be modified.
2. No entities from the list have been modified by someone else
The API persists the changes into the DB and returns the list of the same entities after all changes (usually the versionDate
is not send in the request but it is updated by the API automatically). It also returns an updated value in the ETag header ETag: "5678"
.
id
long?
Course ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
deleted
boolean
Cannot be true in POST/PUT/PATCH methods
📶 EQUALS
,ENUM
enabled
boolean
Enable course
name
string(1, ...)
Course name
📶 STRING
🔽 BOTH
sortOrder
long
Value for order (sorting) courses.
tags
string[]
Tags for a courses
versionDate
timestamp?
Last modification date and time
📶 EQUALS
,ENUM
,NUMBER
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/courses
cloudId*
integer
sort
string
page
integer
filter
string
limit
integer
Authorization*
string
Bearer accessToken
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/courses/:courseId
cloudId*
Integer
API for Daily Menu Product is unstable - the schema may change in the future.
id
long?
Daily menu product ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
_cloudId
long
Cloud ID
deleted
boolean
Daily menu product deleted
📶 EQUALS
,ENUM
note
string?
Daily menu product note
prefix
string(10)
dialy menu product prefix
validFrom
timestamp
Product is available from this date and time
📶 EQUALS
,ENUM
,NUMBER
🔽 BOTH
validUntil
timestamp
Product is available until this date and time
📶 EQUALS
,ENUM
,NUMBER
versionDate
timestamp?
Last modification date and time
📶 EQUALS
,ENUM
,NUMBER
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/daily-menu-products
cloudId*
integer
sort
string
filter
string
page
string
limit
string
Authorization*
string
Bearer accessToken
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/daily-menu-products/:dailyMenuProductId
dailyMenuProductId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/daily-menu-products
cloudId*
integer
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/daily-menu-products/:dailyMenuProductId
dailyMenuProductId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
Common Methods
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/:entity/:entityId
Get a single entity identified by its ID.
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/:entity
Get a custom-sorted paginated list of entities matching the filter criteria. Without applying a filter over deleted
, only non-deleted entities are output.
PATCH
https://api.dotykacka.cz/v2/clouds/:cloudId/:entity/:entityId
Update a single entity identified by its ID.
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/:entity
Create a list of new entities.
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/:entity/:entityId
Replace a single entity identified by its ID.
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/:entity
Replace a list of entities.
DELETE
https://api.dotykacka.cz/v2/clouds/:cloudId/:entity/:entityId
Delete a single entity identified by its ID.
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/:entity
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/:entity/:entityId
Defines a customer account.
Please note that for credit operations, it is the responsibility of the integrator to create tax documents.
_cloudId
integer
Cloud ID
📶 EQUALS
,ENUM
_customerId
long
Customer ID
📶 EQUALS
,ENUM
_lastCustomerAccountLogId
long?
Customer account log ID
📶 EQUALS
,ENUM
allowedMinimalBalance
BigDecimal
Minimal account balance
📶 NUMBER
balance
BigDecimal
Account balance
📶 NUMBER
created
timestamp
Timestamp of created record
📶 EQUALS
,ENUM
,NUMBER
currency
string
Three-letter currency according to ISO 4217
📶 STRING
🔽 BOTH
id
long
Customer account ID
📶 EQUALS
,ENUM
modified
timestamp
Last modification date and time
📶 EQUALS
,ENUM
,NUMBER
type
enum
Account type, supported value: "default"
📶 STRING
🔽 BOTH
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/customer-accounts
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/customer-accounts/:customerAccountId
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/customers/:customerId/accounts/:accountType
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/customer-accounts
Endpoints here allow you to upload delivery notes and filter information about those that were successfully imported.
id
long
Delivery note ID
📶 EQUALS
,ENUM
currency
string(3)
Currency from xml element DEASDV.DOCUMENT.CURRENCY
created
timestamp?
Created date and time from xml element DEASDV.DOCUMENT.CREATED
📶 EQUALS
,ENUM
,NUMBER
🔽 BOTH
deleted
boolean
Delivery note deleted
📶 EQUALS
,ENUM
🔽 BOTH
documentId
string(180)
Document ID from xml attribute DEASDV.DOCUMENT.id
📶 EQUALS
,ENUM
,STRING
documentNumber
string(18)
Document number from xml element DEASDV.DOCUMENT.DOCUMENT_NUMBER
expeditionDate
timestamp?
Expedition date and time from xml element DEASDV.DOCUMENT.EXPEDITION_DATE
📶 EQUALS
,ENUM
,NUMBER
🔽 BOTH
status
integer
Status
📶 EQUALS
,ENUM
supplierName
string(180)
Supplier name from xml element DEASDV.DOCUMENT.SUPPLIER.NAME
text
string
Text from xml element DEASDV.DOCUMENT.TEXT
url
string(256)
Public URL that can be used to download the XML document. The file downloaded represents only the DOCUMENT section from the imported file so it cannot be re-uploaded as-is (uploaded files must have the DEASDV root element).
versionDate
timestamp?
Last modification date and time
📶 EQUALS
,ENUM
,NUMBER
🔽 BOTH
Below is a simplified structure only. For the complete definition of the document structure please see the attached XSD below.
Piece, Points
Milligram, Gram, Decagram, Kilogram, Pound, Ounce, Quintal, Tone
Millimeter, Centimeter, Meter, Kilometer, Inch, Mile
SquareMeter, SquareFoot
Milliliter, Centiliter, Deciliter, Liter, UsGallon, UkGallon, CubicFoot, Hectoliter, CubicMeter
Second, Minute, Hour, Day, Week, Month, Year
The complete description of the XML file structure can be found in the attached file below:
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/branches/:branchId/delivery-note-uploads
You can download a sample XML and modify it for your needs. The attached sample file contains two documents of types DELIVERY_NOTE and RETURN respectively.
Maximum size of the XML file is set to 60MB.
The uploaded XML file must have s single DEASDV
root element
Document id
attribute must be a valid UUID in the form "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
Document TYPE
must be "DELIVERY_NOTE" (default when null) or "RETURN" (remittance)
Document CURRENCY
must be in the ISO 4217 format
Item UNIT
must be a valid unit name - see the Supported units (UNIT)
<TYPE>DELIVERY_NOTE</TYPE>
)Item PRICE_WITHOUT_VAT
must not be null
Item PRICE_WITH_VAT
must not be null
Item VAT_RATE
must not be null
<TYPE>RETURN</TYPE>
)Item AMOUNT
cannot be positive
Item PRICE_WITHOUT_VAT
must be null
Item PRICE_WITH_VAT
must be null
Item VAT_RATE
must be null
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/delivery-notes
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/delivery-notes/:deliveryNoteId
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/delivery-notes
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/delivery-notes/:deliveryNoteId
id
long?
Employee ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
_sellerId
long?
Seller ID
📶 EQUALS
,ENUM
accessLevel
long
Access level
📶 BITS
barcode
string?(180)
Bar code
📶 STRING
deleted
boolean
Employee deleted - cannot be true in POST/PUT/PATCH methods
📶 EQUALS
, ENUM
🔽 BOTH
email
string?(100)
E-mail address
📶 STRING
🔽 BOTH
enabled
boolean
Employee enabled
📶 EQUALS
, ENUM
hexColor
string(7)
Employee color
maxDiscount
double?
Max discount
modifiedBy
string?(32)
Employee modified by
name
string(256)
Employee name - must not be empty
📶 STRING
🔽 BOTH
phone
string?(40)
Phone number
📶 STRING
requirePinAlways
boolean
Whether the PIN is always required
📶 EQUALS
, ENUM
stockAccessLevel
long
Stock access level
📶 BITS
tags
string[]?
Tags list for employee
📶 EQUALS
, ENUM
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/employees
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/employees/:employeeId
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/employees
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/employees
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/employees/:employeeId
PATCH
https://api.dotykacka.cz/v2/clouds/:cloudId/employees/:employeeId
DELETE
https://api.dotykacka.cz/v2/clouds/:cloudId/employees/:employeeId
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/employees
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/employees/:employeeId
accessPin
string(4,...)
Numeric characters only
requirePinAlways
boolean?
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/employees/:employeeId/access-pins
id
long?
EET subject ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
🔽 NONE
deleted
boolean
EET subject deleted - cannot be true in POST/PUT/PATCH methods
📶 EQUALS
, ENUM
🔽 BOTH
enabled
boolean
EET subject enabled
📶 EQUALS
, ENUM
name
string(500)
EET subject name
📶 STRING
🔽 BOTH
vatPayer
boolean
EET subject is a VAT payer
📶 EQUALS
, ENUM
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudid/eet-subjects
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/eet-subjects/:eetSubjectId
POST
https://api.dotykacka.cz/v2/clouds/:cloudid/eet-subjects
PUT
https://api.dotykacka.cz/v2/clouds/:cloudid/eet-subjects
PUT
https://api.dotykacka.cz/v2/clouds/:cloudid/eet-subjects/:eetSubjectId
PATCH
https://api.dotykacka.cz/v2/clouds/:cloudid/eet-subjects/:eetSubjectId
DELETE
https://api.dotykacka.cz/v2/clouds/:cloudid/eet-subjects/:eetSubjectId
id
long?
Money Log ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
_sellerId
long?
Seller ID
📶 EQUALS
,ENUM
amount
double
Money log amount
created
timestamp
Money log created date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
currency
string?(3)
Currency code
flags
long
Money log flags
📶 BITS
note
string?(1000)
Money log note
paymentTypeId
long
Payment type ID
📶 EQUALS
, ENUM
tags
string[]?
Tags for a money log
📶 EQUALS
, ENUM
tipAmount
double?
Paid tip amount
transactionType
enum
Transaction type
📶 EQUALS
, ENUM
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/money-logs
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/money-logs/:moneyLogId
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/money-logs
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/money-logs/:moneyLogId
API for Daily Menu is unstable - the schema may change in the future.
id
long?
Daily menu ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
deleted
boolean
Daily menu deleted
📶 EQUALS
,ENUM
footer
string?
Text of menu menu footer
header
string?
Text of menu header
validFrom
timestamp
Menu is available from this date and time
📶 EQUALS
,ENUM
,NUMBER
🔽 BOTH
validUntil
timestamp
Menu is available until this date and time
📶 EQUALS
,ENUM
,NUMBER
versionDate
timestamp?
Last modification date and time
📶 EQUALS
,ENUM
,NUMBER
GET
https://api.dotykacka.cz /v2/clouds/:cloudId/daily-menus
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/daily-menus/:dailyMenuId
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/daily-menus
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/daily-menus/:dailyMenuId
_cloudId
integer
🔽 NONE
_dailyMenuId
long
ID
📶 EQUALS
,ENUM
_productId
long
ID
📶 EQUALS
,ENUM
_branchId
integer
📶 EQUALS
,ENUM
_cloudId
integer
type
enum
from xml element DEASDV.DOCUMENT.TYPE
Upload the delivery note XML file to the server for verification and further processing. The file must be provided as a value for the key named "file" in a form-data body. For each XML element DEASDV.DOCUMENT
a DeliveryNote entity is returned in a list in the response.
If TYPE
in DEASDV.DOCUMENT
is RETURN
, then ITEM.AMOUNT
must be a negative number or zero and ITEM.PRICE_WITHOUT_VAT
, ITEM.PRICE_WITH_VAT
and ITEM.VAT_RATE
must be NULL
(not present under the ITEM
node). See the .
Below you can see how to correctly configure the request Body in .
In case the XML file is not accepted, please make sure it is valid according to the XSD. You can use one of the free online validation tools like
Please see the page for more info on the planned changes in validation.
_cloudId
integer
_cloudId
integer
🔽 NONE
vatId
string(50)
EET subject VAT ID (CZ: DIČ, PL: NIP). Validation .
📶 EQUALS
🔽 NONE
_branchId
integer
📶 EQUALS
,ENUM
_cloudId
integer
_employeeId
long?
📶 EQUALS
,ENUM
_orderId
long
📶 EQUALS
,ENUM
_cloudId
long
ID
Header
Value
Accept
application/json
Content-Type
application/json
cloudId
integer
ID of the cloud.
entity
string
Name of the entity type, f.e. "suppliers".
entityId
integer
ID of the entity to get.
Authorization
string
Bearer accessToken
If-None-Match
string
ETag to return results only if changed.
cloudId
integer
ID of the cloud.
entity
string
Name of the entity type, f.e. "suppliers".
filter
string
Filter conditions.
sort
string
Sort parameter.
page
integer
Page to start with.
limit
integer
Page size (100 records maximum)
Authorization
string
Bearer accessToken
If-None-Match
string
ETag to return results only if changed.
cloudId
integer
ID of the cloud.
entity
string
Name of the entity type, f.e. "suppliers".
entityId
integer
ID of the entity to update.
Authorization
string
Bearer accessToken
If-Match
string
ETag to update only if not changed.
cloudId
integer
ID of the cloud.
entity
string
Name of the entity type, f.e. "suppliers".
Authorization
string
Bearer accessToken
cloudId
integer
ID of the cloud.
entity
string
Name of the entity type, f.e. "suppliers".
entityId
integer
ID of the entity to replace.
Authorization
string
Bearer accessToken
If-Match
string
ETag required when updating an entity. ETag ignored when inserting new entity.
cloudId
integer
ID of the cloud.
entity
string
Name of the entity type, f.e. "suppliers".
Authorization
string
Bearer accessToken
If-Match
string
ETag required when updating at least a single entity. ETag ignored when inserting new entities only.
cloudId
string
ID of the cloud.
entity
string
Name of the entity type, f.e. "suppliers".
entityId
string
ID of the entity to delete.
Authorization
string
Bearer accessToken
If-Match
string
ETag ignored (temporarily) when deleting an entity.
cloudId
integer
ID of the cloud.
entity
string
Name of the entity type, f.e. "suppliers".
Authorization
string
Bearer accessToken
cloudId
integer
ID of the cloud.
entity
string
Name of the entity type, f.e. "suppliers".
entityId
integer
ID of the entity to get the options for.
Authorization
string
Bearer accessToken
cloudId*
integer
Authorization*
string
Bearer accessToken
cloudId*
integer
customerAccountId
long
Authorization*
string
Bearer accessToken
cloudId*
integer
customerId
long
accountType
string
valid value: "default"
Authorization*
string
Bearer accessToken
cloudId*
integer
Authorization*
string
Bearer accessToken
sort
string
page
integer
filter
string
limit
integer
cloudId*
integer
branchId*
integer
Authorization*
string
Bearer accessToken
Content-Type*
string
multipart/form-data; boundary=:boundary (:boundary can be any value that won't appear in the HTTP data sent to the server, f.e. 12345678-abcd-1234-cdef-1234567890ab)
file*
object
Delivery note XML file. You must set file content type: application/xml; charset=:charset (:charset must be a valid charset used to encode the file, f.e. UTF-8, ISO-8859-2, etc.)
cloudId*
integer
page
integer
limit
integer
filter
string
sort
string
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
deliveryNoteId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
cloudId*
integer
Authorization*
string
Bearer accessToken
deliveryNoteId*
integer
cloudId*
integer
Authorization*
string
cloudId*
integer
sort
string
filter
string
page
integer
limit
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
employeeId*
integer
cloudId*
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
cloudId*
integer
Authorization*
string
Bearer accessToken
array
Array of employee. Maximum size 100.
cloudId*
integer
If-Match
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
array
Array of employee. Maximum size 100.
employeeId*
integer
cloudId*
integer
If-Match
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
object
Employee
employeeId*
integer
cloudId*
integer
If-Match*
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
object
Part of employee
employeeId*
integer
cloudId*
integer
If-Match
string
ETag ignored (temporarily) when deleting an entity.
Authorization*
string
Bearer accessToken
cloudId*
integer
Authorization*
string
Bearer accessToken
employeeId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
employeeId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
object
Access pin schema
cloudId*
integer
page
integer
limit
integer
sort
string
filter
string
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
cloudId*
integer
eetSubjectId*
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
eetSubjectId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
array
Array of eet subjects. Maximum size 100.
cloudId*
integer
If-Match
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
array
Array of eet subjects. Maximum size 100.
eetSubjectId*
integer
cloudId*
integer
If-Match
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
object
EET subject
eetSubjectId*
integer
cloudId*
integer
If-Match*
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
object
EET subject
eetSubjectId*
integer
cloudId*
integer
If-Match
string
ETag ignored (temporarily) when deleting an entity.
Authorization*
string
JWT token.
Bit
Name
1
INVOICE_FROM_RECEIPTS
cloudId*
integer
sort
string
filter
string
page
integer
limit
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
moneyLogId*
integer
cloudId*
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
cloudId*
integer
Authorization*
string
Bearer accessToken
moneyLogId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
cloudId*
integer
sort
string
filter
string
page
string
limnit
string
Authorization*
string
Bearer accessToken
cloudId*
integer
dailyMenuId*
integer
Authorization*
string
Bearer accessToken
cloudId*
integer
Authorization*
string
Bearer accessToken
cloudId*
integer
dailyMenuId*
integer
Authorization*
string
Bearer accessToken
Configuration of various taxes. Currently the only supported type is VAT.
_cloudId
long
Cloud ID
created
timestamp?
Timestamp of entity creation
📶 EQUALS
,ENUM
,NUMBER
🔽 BOTH
deleted
boolean
If entity is deleted
📶 EQUALS
,ENUM
flags
short
Flags for the tax
📶 BITS
id
long?
Entity ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
name
string?
Name of the tax
📶 STRING
🔽 BOTH
value
double
Value of tax in percent, f.e. 20 = 20%. Must be in range <0; 100> and it must be unique - having two entities with the same value is not allowed (exempted rate is an exception).
🔽 BOTH
versionDate
timestamp?
Last modification date and time
📶 EQUALS
,ENUM
,NUMBER
🔽 BOTH
Bit
Name
0
TAKE_AWAY_RATE
1
EXEMPTED_RATE
2
DELIVERY_DEFAULT_RATE
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/taxes
cloudId
integer
sort
string
filter
string
page
string
limit
string
Authorization
string
Bearer accessToken
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/taxes/:taxId
taxId
integer
cloudId
integer
Authorization
string
Bearer accessToken
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/taxes
cloudId
integer
Authorization
string
Bearer accessToken
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/taxes
cloudId*
integer
Authorization*
string
Bearer accessToken
If-Match
string
ETag to update only if not changed.
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/taxes/:taxId
taxId*
integer
cloudId*
integer
Authorization
string
Bearer accessToken
If-Match
string
ETag to update only if not changed.
PATCH
https://api.dotykacka.cz/v2/clouds/:cloudId/taxes/:taxId
taxId*
integer
cloudId*
integer
Authorization
string
Bearer accessToken
If-Match*
string
ETag to update only if not changed.
DELETE
https://api.dotykacka.cz/v2/clouds/:cloudId/taxes/:taxId
taxId
integer
cloudId
integer
Authorization
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/taxes
cloudId
integer
Authorization
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/taxes/:taxId
taxId
integer
cloudId
integer
Authorization
string
Bearer accessToken
_cloudId
integer
Cloud ID
_productId
long
Product ID - stock item product
📶 EQUALS
,ENUM
deleted
boolean
Stock packaging deleted - cannot be true in POST/PUT/PATCH methods
📶 EQUALS
, ENUM
🔽 BOTH
ean
string[]?
EAN codes
📶 EQUALS
, ENUM
id
long?
Stock packaging ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
name
string(400)
Product name
📶 STRING
🔽 BOTH
plu
string[]?
PLU codes
📶 EQUALS
, ENUM
quantity
double
Quantity of stock packaging
unit
enum
Unit of stock packaging must be in the same group as the stock item product with _productId
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/stock-packagings
cloudId*
integer
sort
string
filter
string
page
integer
limit
integer
Authorization*
string
Bearer accessToken
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/stock-packagings/:stockPackagingId
cloudId*
integer
stockPackagingId*
long
Authorization*
string
Bearer accessToken
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/stock-packagings
cloudId*
integer
Auhtorization*
string
Bearer accessToken
*
array
Array of StockPackaging of max size 100.
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/stock-packagings
cloudId*
integer
If-Match*
string
Etag to update only if not changed.
Authorization*
string
Bearer accessToken
*
array
Array of StockPackaging of maxim size 100
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/stock-packagings/:stockPackagingId
cloudId*
integer
stockPackagingId*
long
If-Match*
string
Etag to update only if not changed.
Authorization*
string
Bearer accessToken
*
object
StockPackaging
PATCH
https://api.dotykacka.cz/v2/clouds/:cloudId/stock-packagings/:stockPackagingId
cloudId*
integer
stockPackagingId*
long
If-Match*
string
Etag to update only if not changed.
Authorization*
string
Bearer accessToken
DELETE
https://api.dotykacka.cz/v2/clouds/:cloudId/stock-packagings/:stockPackagingId
cloudId*
integer
stockPackagingId*
long
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/stock-packagings
cloudId*
integer
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/stock-packagings/:stockPackagingId
cloudId*
integer
stockPackagingId*
long
Authorization*
string
Bearer accessToken
_sellerId
long?
Seller ID
📶 EQUALS
,ENUM
bkp
string?
Only for fiscalized Order
📶 EQUALS
,ENUM
canceledDate
timestamp?
Date of cancel Order
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
completed
timestamp?
Order is completed.
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
created
timestamp
Created date of Order
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
currency
string(3)
Currency code
documentNumber
string
📶 EQUALS
,ENUM
, STRING
documentType
enum
Type of Order.
📶 EQUALS
,ENUM
externalId
string?
Id of external application (custom ID)
📶 EQUALS
,ENUM
fik
string?
Only for fiscalized Order
flags
integer
Special settings for Order in binary form.
📶 BITS
id
long
Primary ID for Order
📶 EQUALS
, ENUM
itemCount
integer
Count of items on Order
locationAccuracy
double?
Accuratcy for location from GPS
locationDate
timestamp?
Date of GPS location record
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
locationLatitude
double?
Latitude value from GPS
locationLongitude
double?
Longitude value from GPS
merchantPrintData
string?
note
string(1000)?
Custom note for order
📶 STRING
paid
boolean
Paid status
📶 EQUALS
, ENUM
parked
boolean
Parked status
📶 EQUALS
, ENUM
pkp
string?
Only for fiscalized Order
points
double
Points value for Order
📶 EQUALS
, NUMBER
printData
string
Data for printer
status
enum
Order status
📶 EQUALS
, ENUM
tags
string[]?
Tags for a Order
📶 EQUALS
, ENUM
tipAmount
double?
Expected tip amount for the order
totalValueRounded
double
Total rounded value for Orderd
updated
timestamp
Updated date
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
versionDate
timestamp
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
Bit
Name
Description
0
CANCELED_PART
1
CANCELED_FULL
2
CANCELLATION
3
FISCALIZATION_REQUIRED
4
MERGED
5
FISCALIZATION_DISABLED
6
PAID_PART
7
FISCALIZATION_SIMPLIFIED
8
VAT_PAYER
9
NON_VAT_PAYER
10
PDF_INVOICE
11
WRITEOFF
12
GASTRO
13
FISCALIZATION_FAILED
14
VAT_PRINT_DISABLED
15
LUNCH_INVITATION
16
DELIVERY
17
MOVED_FROM
18
MOVED_TO
19
WELMEC_ENABLED
Scale standard
20
REVERSE_CHARGE
21
CORRECTED
22
USE_ALTERNATIVE_ITEM_NAMES
23
PAID_WITH_ALTERNATIVE_CURRENCY
24
VAT_RECORDS_TOP_DOWN
VAT summary is computed from price with VAT
25
EOS_LOCKED
Can be modified only with EOS flows
26
SK_CANCELED_NONFISCALLY
The original order contains this flag
27
ISSUED_EXTERNALLY
Order was issued externally without employees interaction, and info dialog should be displayed.
28
ISSUED_EXTERNALLY_DISPLAYED
External issue info was displayed.
29
FISCALIZATION_SUCCESSFUL
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/orders
cloudId*
integer
include
array
Include other entities [1]
namedFilter
string
Named filters [2]
sort
string
filter
string
page
integer
limit
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
[1] The following entities can be included in the response:
orderItems
- list of order items
moneyLogs
- list of money logs
Multiple entities can be included at the same time, f.e.: include=orderItems,moneyLogs
Note that the client must have the proper permissions to read the included entity. The API2 will return HTTP error 403 Forbidden otherwise.
[2] The following named filters can be used:
openOrders
- return open orders only
orderItems.openOrderItems
- with include=orderItems
filters open order items as well
Multiple named filters can be used at the same time, f.e.: namedFilter=openOrders;orderItems.openOrderItems
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/orders/:orderId
orderId*
integer
cloudId*
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/orders
cloudId*
integer
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/orders/:orderId
orderId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
id
long?
Customer ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
_discountGroupId
long?
Discount group ID
📶 EQUALS
,ENUM
_sellerId
long?
Seller ID
📶 EQUALS
,ENUM
addressLine1
string(180)
Address line 1
📶 STRING
addressLine2
string?(180)
Address line 2
📶 STRING
barcode
string(50)
Bar code
📶 EQUALS
,ENUM
birthday
timestamp?
The date of birth
city
string?(255)
City
📶 EQUALS
,STRING
companyId
string(255)
Customer company ID (CZ: IÄŒO, PL: REGON)
📶 STRING
companyName
string(180) [1]
Customer company name
📶 STRING
🔽 BOTH
country
string?(10)
Country code
📶 STRING
created
timestamp?
Customer created date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
deleted
boolean
Customer deleted - cannot be true in POST/PUT/PATCH methods
📶 EQUALS
, ENUM
🔽 BOTH
display
boolean
Customer displayed
📶 EQUALS
, ENUM
🔽 BOTH
email
string(100)
E-mail address
📶 STRING
expireDate
timestamp?
Customer expire date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
externalId
string?(256)
External ID
📶 EQUALS
,ENUM
firstName
string(180) [1]
First name
📶 STRING
🔽 BOTH
flags
long
Customer flags
📶 BITS
headerPrint
string(256)
Header for printing
hexColor
string(7)
Product color
internalNote
string(1000)
Internal note
lastName
string(180) [1]
Last name
📶 STRING
🔽 BOTH
modifiedBy
string?(32)
Customer modified by
note
string?(500)
Customer note
phone
string(20)
Phone
📶 STRING
points
double
Customer points - must be greater than or equal to 0
📶 NUMBER
tags
string[](255)
Tags for a customer, must not contain any of these characters: ,^?*()[]$
📶 EQUALS
, ENUM
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
zip
string(20)
ZIP code
📶 STRING
[1] Properties firstName
, lastName
and companyName
must not be blank. At least one of these properties must contain a non-blank value.
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/customers
cloudId*
integer
page
integer
limit
integer
filter
string
sort
string
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/customers/:customerId
customerId*
integer
cloudId*
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/customers
cloudId*
integer
Authorization*
string
Bearer accessToken
array
Array of Customer object
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/customers
cloudId*
integer
If-Match
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
array
Array of Customer object
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/customers/:customerId
customerId*
integer
cloudId*
integer
If-Match
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
object
Customer object
PATCH
https://api.dotykacka.cz/v2/clouds/:cloudId/customers/:customerId
customerId*
integer
cloudId*
integer
If-Match*
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
string
Object with some Customer properties
DELETE
https://api.dotykacka.cz/v2/clouds/:cloudId/customers/:customerId
customerId*
integer
cloudId*
integer
anonymize
boolean
Default false
If-Match
string
ETag ignored (temporarily) when deleting an entity.
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/customers
cloudId*
integer
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/customers/:customerId
customerId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
id
long?
Product Ingredient ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
deleted
boolean
Ingredient deleted
📶 EQUALS
, ENUM
🔽 BOTH
quantity
double
Product amount for the ingredient
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/product-ingredients
Get a custom-sorted paginated list of product ingredients matching the filter criteria.
cloudId*
integer
ID of the cloud.
filter
string
Filter conditions.
sort
string
Sort parameter.
page
integer
Page to start with.
limit
integer
Page size (100 records maximum)
Authorization*
string
Bearer accessToken
If-None-Match
string
ETag to return results only if changed.
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/product-ingredients/:entityId
Get a single product ingredient identified by its ID.
cloudId*
integer
ID of the cloud.
entityId*
integer
ID of the product ingredient to get.
Authorization*
string
Bearer accessToken
If-None-Match
string
ETag to return results only if changed.
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/product-ingredients
Create a list of new product ingredients.
cloudId*
integer
ID of the cloud.
Authorization*
string
Bearer accessToken
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/product-ingredients
Replace a list of product ingredients.
cloudId*
integer
ID of the cloud.
Authorization*
string
Bearer accessToken
If-Match
string
ETag to update only if not changed.
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/product-ingredients/:entityId
Replace a single product ingredient identified by its ID.
cloudId*
integer
ID of the cloud.
entityId*
integer
ID of the product ingredient to replace.
Authorization*
string
Bearer accessToken
If-Match
string
ETag to update only if not changed.
PATCH
https://api.dotykacka.cz/v2/clouds/:cloudId/product-ingredients/:entityId
Update a single product ingredient identified by its ID.
cloudId*
integer
ID of the cloud.
entityId*
integer
ID of the product ingredient to update.
Authorization*
string
Bearer accessToken
If-Match*
string
ETag to update only if not changed.
DELETE
https://api.dotykacka.cz/v2/clouds/:cloudId/product-ingredients/:entityId
Delete a single product ingredient identified by its ID.
cloudId*
string
ID of the cloud.
entityId*
string
ID of the product ingredient to delete.
Authorization*
string
Bearer accessToken
If-Match
string
ETag ignored (temporarily) when deleting an entity.
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/product-ingredients
cloudId*
integer
ID of the cloud.
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/product-ingredients/:entityId
cloudId*
integer
ID of the cloud.
entityId*
integer
ID of the product ingredient to get the options for.
Authorization*
string
Bearer accessToken
_sellerId
long?
Seller ID
📶 EQUALS
,ENUM
alternativeName
string?
Product alternative name
billedUnitPriceWithVat
double
Unit price with vat after discount
billedUnitPriceWithoutVat
double
Unit price without vat after discount
canceledDate
timestamp?
Date of item canceled
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
completed
timestamp?
Date of item (Order) completed
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
created
timestamp
Date of item created (added to Order)
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
currency
string(3)
Currency code
discountPercent
double
Discount percent
discountPermitted
boolean
Enabled discount
📶 EQUALS
, ENUM
ean
string[]
EAN for item (from product)
📶 EQUALS
, ENUM
flags
integer
Special settings for Order item in binary form.
📶 BITS
id
long
Primary ID for Order item
📶 EQUALS
, ENUM
name
string
Name of item / product.
📶 STRING
🔽 BOTH
note
string
Note for item
📶 STRING
onSale
boolean
Is item on sale
📶 EQUALS
, ENUM
packaging
double
Packaging value for item / product
parked
boolean
Is item parked
📶 EQUALS
, ENUM
points
double
Points value for Order item
preparationDuration
integer?
The time in seconds needed to prepare the product
quantity
double
Quantity of item / product
stockDeduct
boolean
📶 EQUALS
, ENUM
subtitle
string
📶 STRING
tags
string[]
Tags for item
📶 EQUALS
, ENUM
totalPriceWithVat
double
Total is with quantity
totalPriceWithoutVat
double
Total is with quantity
unitPriceWithVat
double
Unit price with vat before discount
unitPriceWithoutVat
double
Unit price without vat before discount
unitPurchasePrice
double
Value of purchase price per unit
updated
timestamp
Date updated
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
vat
double
Vat rate
versionDate
timestamp
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/order-items
This endpoint includes customizations in an additional field orderItemCustomizations
of type list.
cloudId*
integer
sort
string
filter
string
page
integer
limit
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/order-items/:orderItemId
This endpoint includes customizations in an additional field orderItemCustomizations
of type list.
orderItemId*
string
cloudId*
string
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/order-items
cloudId*
integer
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/order-items/:orderItemId
orderItemId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
id
long?
Reservation ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
created
timestamp?
Reservation created date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
endDate
timestamp
End date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
flags
integer
Reservation flags
📶 BITS
note
string?
Reservation note
startDate
timestamp
Start date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
status
enum
Reservation status
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/reservations
cloudId*
integer
sort
string
filter
string
page
integer
limit
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/reservations/:reservationId
reservationId*
integer
cloudId*
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/reservations
cloudId*
integer
Authorization*
string
Bearer accessToken
array
Array of reservations. Maximum size 100.
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/reservations
cloudId*
integer
If-Match
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
array
Array of reservation. Maximum size 100.
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/reservations/:reservationId
reservationId*
integer
cloudId*
integer
If-Match
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
object
Reservation
PATCH
https://api.dotykacka.cz/v2/clouds/:cloudId/reservations/:reservationId
reservationId*
integer
cloudId*
integer
If-Match*
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
DELETE
https://api.dotykacka.cz/v2/clouds/:cloudId/reservation/:reservationId
reservationId*
integer
cloudId*
integer
If-Match
string
ETag ignored (temporarily) when deleting an entity.
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/tables
cloudId*
integer
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/reservations/:reservationId
reservationId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
id
long?
Product Customization ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
deleted
boolean
Customization deleted
📶 EQUALS
, ENUM
🔽 BOTH
flags
integer
Customization flags
📶 BITS
maxSelected
integer
Maximum selected items count
minSelected
integer
Minimum selected items count
name
string?(400)
Customization name
📶 STRING
🔽 BOTH
priceLevel
enum?
Define which price level use.
sortOrder
long
Customization sort order
🔽 BOTH
translatedName
map<string, string>?
A mapping of language codes to translated customization names.
🔽 NONE
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
priceLevels are only applicable in Poland. Settings for other countries are not reflected.
Bit
Name
0
DEFAULT_SELECTION_GRATIS
1
ONE_CHEAPEST_ITEM_GRATIS
2
ALL_ITEMS_GRATIS
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/product-customizations
Get a custom-sorted paginated list of product customizations matching the filter criteria.
cloudId*
integer
ID of the cloud.
filter
string
Filter conditions.
sort
string
Sort parameter.
page
integer
Page to start with.
limit
integer
Page size (100 records maximum)
Authorization*
string
Bearer accessToken
If-None-Match
string
ETag to return results only if changed.
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/product-customizations/:entityId
Get a single product customization identified by its ID.
cloudId*
integer
ID of the cloud.
entityId*
integer
ID of the product customization to get.
Authorization*
string
Bearer accessToken
If-None-Match
string
ETag to return results only if changed.
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/product-customizations
Create a list of new product customizations.
cloudId*
integer
ID of the cloud.
Authorization*
string
Bearer accessToken
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/product-customizations
Replace a list of product customizations.
cloudId*
integer
ID of the cloud.
Authorization*
string
Bearer accessToken
If-Match
string
ETag to update only if not changed.
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/product-customizations/:entityId
Replace a single product customization identified by its ID.
cloudId*
integer
ID of the cloud.
entityId*
integer
ID of the product customization to replace.
Authorization*
string
Bearer accessToken
If-Match
string
ETag to update only if not changed.
PATCH
https://api.dotykacka.cz/v2/clouds/:cloudId/product-customizations/:entityId
Update a single product customization identified by its ID.
cloudId*
integer
ID of the cloud.
entityId*
integer
ID of the product customization to update.
Authorization*
string
Bearer accessToken
If-Match*
string
ETag to update only if not changed.
DELETE
https://api.dotykacka.cz/v2/clouds/:cloudId/product-customizations/:entityId
Delete a single product customization identified by its ID.
cloudId*
string
ID of the cloud.
entityId*
string
ID of the product customization to delete.
Authorization*
string
Bearer accessToken
If-Match
string
ETag ignored (temporarily) when deleting an entity.
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/product-customizations
cloudId*
integer
ID of the cloud.
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/product-customizations/:entityId
cloudId*
integer
ID of the cloud.
entityId*
integer
ID of the product customization to get the options for.
Authorization*
string
Bearer accessToken
id
long?
ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
deleted
boolean
Discount group deleted - cannot be true in POST/PUT/PATCH methods
📶 EQUALS
, ENUM
🔽 BOTH
discountPercent
double(100)
Represent percent value. Maximum value is 100 (100 = 100%)
display
boolean
Displayed
📶 EQUALS
, ENUM
🔽 BOTH
externalId
string
📶 EQUALS
, ENUM
name
string(100)
Name for discount group
📶 EQUALS
, ENUM
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/discount-groups
cloudId*
integer
page
integer
limit
integer
filter
string
sort
string
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/discount-groups/:discountGroupId
discountGroupId*
integer
cloudId*
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/discount-groups
cloudId*
integer
Authorization*
string
Bearer accessToken
*
array
Array of discount groups. Maximum size 100.
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/discount-groups
cloudId*
integer
If-Match
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
*
array
Array of discount groups. Maximum size 100.
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/discount-groups/:discountGroupId
discountGroupId*
integer
cloudId*
integer
If-Match
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
*
object
Discount gorup
PATCH
https://api.dotykacka.cz/v2/clouds/:cloudId/discount-groups/:discountGroupId
discountGroupId*
integer
cloudId*
integer
If-Match*
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
DELETE
https://api.dotykacka.cz/v2/clouds/:cloudId/discount-groups/:discountGroupId
Discount group cannot belong to any Customer (deleted=false).
First remove discount group for all customers via GET/PUT methods. For GET method use filter=_discountGroupId|eq|discountGroupId
discountGroupId*
integer
cloudId*
integer
If-Match
string
ETag ignored (temporarily) when deleting an entity.
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/discount-groups
cloudId*
integer
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/discount-groups/:discountGroupId
discountGroupId*
integer
cloudId*
integer
Authorization*
string
id
long?
Supplier ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
🔽 NONE
addressLine1
string(180)
Address line 1
📶 EQUALS
,STRING
🔽 NONE
addressLine2
string?(180)
Address line 2
📶 EQUALS
,STRING
🔽 NONE
city
string(100)
City
📶 EQUALS
,STRING
🔽 NONE
companyId
string(255)
Supplier company ID (CZ: IÄŒO, PL: REGON)
📶 EQUALS
,ENUM
🔽 NONE
country
string?(10)
Country code
📶 EQUALS
,ENUM
🔽 NONE
deleted
boolean
Supplier deleted - cannot be true in POST/PUT/PATCH methods
📶 EQUALS
, ENUM
🔽 BOTH
deliveryNoteIds
string?()
Delivery note IDs
🔽 NONE
display
boolean
Supplier displayed
📶 EQUALS
, ENUM
🔽 BOTH
email
string(100)
E-mail address
🔽 NONE
externalId
string?(256)
External ID
📶 EQUALS
,ENUM
🔽 NONE
name
string(180)
Supplier name
📶 EQUALS
,STRING
🔽 BOTH
phone
string(20)
Phone number
🔽 NONE
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
zip
string(20)
ZIP code
📶 EQUALS
,ENUM
🔽 NONE
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/suppliers
Get a custom-sorted paginated list of suppliers matching the filter criteria.
cloudId*
integer
ID of the cloud.
filter
string
Filter conditions.
sort
string
Sort parameter.
page
integer
Page to start with.
limit
integer
Page size (100 records maximum)
Authorization*
string
Bearer accessToken
If-None-Match
string
ETag to return results only if changed.
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/suppliers/:entityId
Get a single supplier identified by its ID.
cloudId*
integer
ID of the cloud.
entityId*
integer
ID of the supplier to get.
Authorization*
string
Bearer accessToken
If-None-Match
string
ETag to return results only if changed.
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/suppliers
Create a list of new suppliers.
cloudId*
integer
ID of the cloud.
Authorization*
string
Bearer accessToken
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/suppliers
Replace a list of suppliers.
cloudId*
integer
ID of the cloud.
Authorization*
string
Bearer accessToken
If-Match
string
ETag to update only if not changed.
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/suppliers/:entityId
Replace a single supplier identified by its ID.
cloudId*
integer
ID of the cloud.
entityId*
integer
ID of the supplier to replace.
Authorization*
string
Bearer accessToken
If-Match
string
ETag to update only if not changed.
PATCH
https://api.dotykacka.cz/v2/clouds/:cloudId/suppliers/:entityId
Update a single supplier identified by its ID.
cloudId*
integer
ID of the cloud.
entityId*
integer
ID of the supplier to update.
Authorization*
string
Bearer accessToken
If-Match*
string
ETag to update only if not changed.
DELETE
https://api.dotykacka.cz/v2/clouds/:cloudId/suppliers/:entityId
Delete a single supplier identified by its ID.
cloudId*
string
ID of the cloud.
entityId*
string
ID of the supplier to delete.
Authorization*
string
Bearer accessToken
If-Match
string
ETag ignored (temporarily) when deleting an entity.
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/suppliers
cloudId*
integer
ID of the cloud.
Authorization*
string
Bearer accessToken
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/suppliers/:entityId
cloudId*
integer
ID of the cloud.
entityId*
integer
ID of the supplier to get the options for.
Authorization*
string
Bearer accessToken
The warehouse branch is an M:N relation entity between branches and warehouses. A branch can be configured to see many warehouses and a warehouse can be seen by many branches.
id
long?
Warehouse branch ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
_warehouseId
long
Warehouse
📶 EQUALS
,ENUM
flags
integer
Warehouse branch flags
📶 BITS
visible
boolean [1]
Whether the branch can see the warehouse
📶 EQUALS
, ENUM
subscribed
boolean [1]
Whether the branch is subscribed for warehouse updates
📶 EQUALS
, ENUM
version
timestamp?
Version date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
[1] In order to be allowed to set visible
to true
the subscribed
must be true
as well.
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouse-branches
Get a custom-sorted paginated list of warehouse branches matching the filter criteria.
cloudId*
integer
ID of the cloud.
sort
string
Sort parameter.
filter
string
Filter conditions.
page
integer
Page to start with.
limit
integer
Page size (100 records maximum)
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouse-branches/:warehouseBranchId
Get a single warehouse branch identified by its ID.
cloudId*
integer
ID of the cloud.
warehouseBranchId*
integer
ID of the warehouse branch to get.
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouse-branches
Create a list of new warehouse branches. An error is returned if the entity with the same _branchId and _warehouseId exists. Use PUT or PATCH for the entity with the required IDs in such cases.
cloudId*
integer
ID of the cloud.
Authorization*
string
Bearer accessToken
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouse-branches/:warehouseBranchId
Replace a single warehouse branch identified by its ID. An error is returned if the sent entity changes _branchId or _warehouseId of an existing entity with same warehouseBranchId. Or if a new entity without warehouseBranchId has the same _branchId and _warehouseId as another existing entity. Please update directly the existing entity with the required new _branchId and _warehouseId instead.
cloudId*
integer
ID of the cloud.
warehouseBranchId*
integer
ID of the warehouse branch to replace.
Authorization*
string
Bearer accessToken
If-Match
string
ETag to update only if not changed.
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouse-branches
Replace a list of warehouse branches. An error is returned if the sent entity changes _branchId or _warehouseId of an existing entity with same warehouseBranchId. Or if a new entity without warehouseBranchId has the same _branchId and _warehouseId as another existing entity. Please update directly the existing entity with the required new _branchId and _warehouseId instead.
cloudId*
integer
ID of the cloud.
Authorization*
string
Bearer accessToken
If-Match
string
ETag to update only if not changed.
PATCH
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouse-branches/:warehouseBranchId
Update a single warehouse branch identified by its ID. An error is returned if the sent entity changes _branchId or _warehouseId of an existing entity with same warehouseBranchId. Or if a new entity without warehouseBranchId has the same _branchId and _warehouseId as another existing entity. Please update directly the existing entity with the required new _branchId and _warehouseId instead.
cloudId*
integer
ID of the cloud.
warehouseBranchId*
integer
ID of the warehouse branch to patch.
Authorization*
string
Bearer accessToken
If-Match*
string
ETag to update only if not changed.
id
long?
Product ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
🔽 NONE
alternativeName
string?
Product alternative name
currency
string?(3)
Currency code
🔽 NONE
deleted
boolean
Product deleted - cannot be true in POST/PUT/PATCH methods
📶 EQUALS
, ENUM
🔽 BOTH
deliveryNoteIds
string?
Delivery note IDs
🔽 NONE
description
string?(1000)
Product description
🔽 NONE
discountPercent
double
Discount percent
🔽 NONE
discountPermitted
boolean
Discount permitted
📶 EQUALS
, ENUM
display
boolean
Product displayed
📶 EQUALS
, ENUM
🔽 BOTH
ean
string[]?
EAN codes
📶 EQUALS
, ENUM
🔽 BOTH
(sort by the first EAN code in the list)
externalId
string?
External ID
📶 EQUALS
,ENUM
🔽 NONE
features
string[]
Product features like spicy, vegan etc. primarily used for EOS
flags
integer
Product flags
📶 BITS
🔽 NONE
hexColor
string(7)
Product color
🔽 NONE
imageUrl
string?
Product image for EOS services. The value of this field can only be deleted by setting it to null
. Non-null values will be ignored.
margin
string?(50)
Product margin as an exact value (plain number without a currency symbol) or a percentage (number followed by a '%' sign). If the percentage format is used the margin must be <= 100%.
🔽 NONE
marginMin
double?
Minimal margin
🔽 NONE
modifiedBy
string?(32)
Product modified by
🔽 NONE
name
string(400)
Product name
📶 STRING
🔽 BOTH
notes
string[]?(1000)
Product notes
🔽 NONE
onSale
boolean
Discount offer
📶 EQUALS
, ENUM
packageItem
double?
Item's package
🔽 NONE
packaging
double
Number of items in a package
🔽 NONE
packagingMeasurement
double?
Measurement packaging for product
🔽 NONE
packagingPriceWithVat
double?
Price of the packaging with VAT primarily used for EOS
🔽 NONE
plu
string[]?
PLU codes
🔽 EQUALS
, ENUM
🔽 BOTH
(sort by the first PLU code in the list)
points
double
Points for buying the product
🔽 NONE
preparationDuration
integer?
The time in seconds needed to prepare the product
🔽 NONE
priceInPoints
double
Price value in points
priceWithVat
double?
Price with VAT
📶 EQUALS
, ENUM
🔽 BOTH
priceWithVatB
double?
Alternative price with vat B
priceWithVatC
double?
Alternative price with vat C
priceWithVatD
double?
Alternative price with vat D
priceWithVatE
double?
Alternative price with vat E
priceWithoutVat
double
Price without VAT
🔽 BOTH
purchasePriceWithoutVat double?
Purchase price without VAT
🔽 NONE
This field has been deprecated. It is ignored in update requests and not returned in responses.
requiresPriceEntry
boolean
Product requires price entry - must be set the same as the flag REQUIRES_PRICE_ENTRY because both values are used by our systems.
📶 EQUALS
, ENUM
sortOrder
long?
Product sort order
🔽 NONE
stockDeduct
boolean
Product is deducted from Warehouse
📶 EQUALS
, ENUM
subtitle
string?(500)
Product subtitle
🔽 NONE
supplierProductCode
string?
Supplier's product code
🔽 NONE
tags
string[]?
Tags for a product, must not contain any of these characters: ,^?*()[]$
📶 EQUALS
, ENUM
translatedDescription
map<string, string>?
A mapping of language codes to translated product descriptions.
🔽 NONE
translatedName
map<string, string>?
A mapping of language codes to translated product names.
🔽 NONE
vat
double
VAT value (a multiplier from range <1.0; 2.0>, f.e. vat=1.234
corresponds to VAT 23.4%)
📶 EQUALS
🔽 BOTH
For VAT payers this value is validated and it must correspond to one of the configured VAT rates.
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/products
[1] The following entities can be included in the response:
customizations
- list of customizations
ingredients
- list of ingredients
Multiple entities can be included at the same time, f.e.: include=customizations,ingredients
Note that the client must have the proper permissions to read the included entity. The API2 will return HTTP error 403 Forbidden otherwise.
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/products/:productId
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/products
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/products
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/products/:productId
PATCH
https://api.dotykacka.cz/v2/clouds/:cloudId/products/:productId
DELETE
https://api.dotykacka.cz/v2/clouds/:cloudId/products/:productId
[1] Can be one of the following: ERROR
, PRESERVE
, DELETE
. An example BODY can look like this:
If no request BODY is sent (default) or a JSON object with the strategy ERROR
is sent and the product has own ingredients or is an ingredient of another product then the API returns an error response with status 409 Conflict with a BODY like in this example:
If a request with a strategy DELETE
is issued and the product has own ingredients or is an ingredient of another product then the related ingredients are deleted. If a request with a strategy PRESERVE
is issued then no ingredients are deleted (ingredients will be preserved).
If a request with a strategy DELETE
is issued and the user does not have the permission to delete ingredients then the API returns the following error response:
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/products
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/products/:productId
id
long?
Table ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
_tableGroupId
long?
Table group
📶 EQUALS
,ENUM
_sellerId
long?
Seller ID
📶 EQUALS
,ENUM
display
boolean
Table displayed
📶 EQUALS
, ENUM
🔽 BOTH
enabled
boolean
Table enabled
📶 EQUALS
, ENUM
locationName
string
Location name
📶 EQUALS
,ENUM
🔽 BOTH
name
string(180)
Table name - must not be empty
📶 STRING
🔽 BOTH
positionX
integer?
Table position X
positionY
integer?
Table position Y
rotation
integer?
Table rotation angle
seats
integer?
Number of seats
📶 EQUALS
,NUMBER
🔽 BOTH
tags
string[]
Tags list for tables
📶 EQUALS
, ENUM
type
enum
Table type
📶 EQUALS
, ENUM
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/tables
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/tables/:tableId
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/tables
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/tables/:tableId
We improve our API continuously, but in some cases, we need to make changes that are not fully compatible with the current interface. Recently we improved validation that should help both to unify rules for the entities and to maintain better integrity of the user data.
We want to make the implementation of the new API changes as simple as possible. You can start using the planned changes right now just by adding the Allow-Version
key with the BC tag into your request headers and test the improved API ahead of the forced rollout.
BC1
)Planned rollout date: 2023-06-01
Before the rollout date, you can send requests with the HTTP header Allow-Version: BC1
to enable BC1. After this date, the API2 will behave as if the flag BC1 was set by default and it will not be needed in the headers. For backward compatibility, you will be able to use BC0 flag to switch back to previous behavior.
The BC1 affects GET endpoints returning paginated list of entities. If there are no entities matching the filter or there are no entities at all, the response can be one of these:
The BC1 changes the validation of the field flags
. This must be considered when creating a new customer by the POST method.
The BC1 changes the validation if the employee is an administrator (i.e. if Employee.id == 0
). Regardless of the BC1 flag, the administrator cannot be deleted (error: 403 Forbidden
).
The BC1 changes validation of the VAT (field vat
) for the Category and Product entities when the Cloud is configured for a tax-payer.
id
long?
Tag ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
deleted
boolean
Tag deleted - cannot be true in POST/PUT/PATCH methods
📶 EQUALS
, ENUM
🔽 BOTH
display
boolean
Tag displayed
📶 EQUALS
, ENUM
🔽 BOTH
externalId
string?
External ID
📶 EQUALS
,ENUM
name
string(650)
Tag name - must not be empty and must be unique. The name must not contain any of these characters: ,^?*()[]$
and also it cannot start with a dot "." when creating a new Tag (tags .dailymenu
and .portion
are allowed).
📶 STRING
🔽 BOTH
versionDate
timestamp?
Last modification date and time
📶 EQUALS
, ENUM
, NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/tags
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/tags/:tagId
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/tags
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/tags
OPTIONS
https://api.dotykacka.cz/v2/clouds/:cloudId/tags/:tagId
id
long?
Warehouse ID - cannot be null in PUT/PATCH methods
📶 EQUALS
,ENUM
🔽 NONE
barcode
string?(180)
Bar code
📶 EQUALS
,ENUM
🔽 NONE
deleted
boolean
Category deleted - cannot be true in POST/PUT/PATCH methods
📶 EQUALS
, ENUM
🔽 BOTH
enabled
boolean
Warehouse enabled
📶 EQUALS
, ENUM
hexColor
string?(7)
Warehouse color
🔽 NONE
name
string(180)
Warehouse name
📶 EQUALS
,STRING
🔽 BOTH
versionDate
timestamp?
Last modification date and time
📶 EQUALS
,ENUM
,NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouses
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouses/:warehouseId
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouses
Create a list of new warehouses.
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouses/:warehouseId
Replace a single warehouse identified by its ID.
PUT
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouses
Replace a list of warehouses.
PATCH
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouses/:warehouseId
Update a single warehouse identified by its ID.
DELETE
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouses/:warehouseId
Delete a single warehouse identified by its ID.
purchasePriceWithoutVat
double?
Purchase price without VAT (if the product has been stocked up previously; null otherwise)
🔽 NONE
stockQuantityStatus
double
Quantity on warehouse
📶 NUMBER
stockStatusVersiondate
timestamp?
Last modification on warehouse
📶 EQUALS
,ENUM
,NUMBER
🔽 BOTH
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouses/:warehouseId/products
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouses/:warehouseId/products/:productId
currency
string?
Currency to be set for the operation (default if not specified: CZK)
invoiceNumber
string
Invoice number - must not be empty
note
string?
Custom note
updatePurchasePrice
boolean
Update product purchase prices
items
array[1,100]
Array of items to stock up (see below)
externalId
string? [1]
External ID
purchasePrice
double?
Purchase price
quantity
double
Items quantity
sellPrice
double?
Product sell price
[1] One of _productId
or externalId
must not be null.
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouses/:warehouseId/stockups
currency
string?
Currency to be set for the operation (default if not specified: CZK)
invoiceNumber
string
Invoice number - must not be empty
note
string?
Custom note
updatePurchasePrice
boolean
Update product purchase prices
items
array[1,100]
Array of items to transfer (see below)
externalId
string? [1]
External ID
purchasePrice
double?
Purchase price
quantity
double
Items quantity
[1] One of _productId
or externalId
must not be null.
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouses/:warehouseId/transfers
currency
string?
Currency to be set for the operation (default if not specified: CZK)
items
array[1,100]
Array of items to sell (see below)
externalId
string? [1]
External ID
note
string?
Custom note
quantity
double
Items quantity
[1] One of _productId
or externalId
must not be null.
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouses/:warehouseId/sales
note
string?
Custom note.
stockTakingDate
timestamp
The date and time of the stock-taking.
items
array
Array of items for the stock-taking (see below)
_productId
long
The product ID.
quantity
BigDecimal
The new quantity of the product in the warehouse.
Stock-taking request
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouses/:warehouseId/stock-takings
Perform the stock-taking action for the specified warehouse and products. The stockTakingDate
must be after the last stock-taking date (see the next endpoint) and it cannot be in the future.
This endpoint is asynchronous - the status of the operation can be monitored by a GET request on the statusWebhookUrl
from the response.
statusWebhookUrl
Possible values of the status
field:
PROCESSING
FINISHED
FAILED
Possible values of the reason
field:
STOCK_TAKING_DATE_IN_FUTURE
PRODUCT_DOES_NOT_EXIST
PRODUCT_STOCK_TAKING_IN_FUTURE
PRODUCT_STOCK_TAKING_AFTER_DATE
UNEXPECTED
Examples:
_productIds
array
Array of product IDs to get the last stock-taking dates for.
Get last stock-taking dates request
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/warehouses/:warehouseId/stock-taking-dates
Get last stock-taking dates for the specified warehouse and products. These dates can be used to prepare a valid stockTakingDate
for the stock-taking endpoint.
Note: Only the products that participated in any stock-taking in the history are included in the response. Products without any stock-taking will not be mentioned in the response.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Response code is returned when the order is issued, but fiscalization failed.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Issues caused by deprecation of the field purchase price without VAT on 2024-09-11.
Breaking change for POS Actions in Slovakia
Adds handling for new fiscal printer failure state in Slovakia.
New BLOCKED_BY_FAILED_PRINT
error code.
New pass-through error for failed fiscal print.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Allow deleting reservations for a deleted table.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Add action for order cancellation
Fix and improve remote printing
Add supported filters and sortings:
sortOrder 🔽 BOTH
sortOrder 🔽 BOTH
note 📶 STRING
status 📶 EQUALS
,ENUM
documentNumber 📶 EQUALS
,ENUM
, STRING
points 📶 EQUALS
,NUMBER
externalId 📶 EQUALS
,ENUM
note 📶 STRING
subtitle 📶 STRING
Table
seats 📶 EQUALS
,NUMBER
🔽 BOTH
locationName 📶 EQUALS
,ENUM
🔽 BOTH
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Describe request not allowed in Slovakia.
Fix few typos.
Make docs a bit more clear.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix minor issues and internal improvements in the API.
Fix filtering of timestamp values with time zone.
Products with many customizations synchronized with Bolt correctly.
Do not allow deleting and permission editing for administrator accounts.
Performance improvements.
Fix minor issues in the API and in the documentation.
Document ID is generated if null when importing Delivery notes.
Product customization can be excluded from publication in EOS.
Fix validation of the document ID format (UUID) in the delivery note XML.
Deny access to clouds that have allowed=false
.
Add filters and sort:
Category
name 📶 STRING
🔽 BOTH
Tag
name 📶 STRING
🔽 BOTH
Employee
name 📶 STRING
🔽 BOTH
email 📶 STRING
🔽 BOTH
MoneyLog
transactionType 📶 EQUALS
, ENUM
paymentTypeId 📶 EQUALS
, ENUM
Customer
companyName 📶 STRING
🔽 BOTH
firstName 📶 STRING
🔽 BOTH
lastName 📶 STRING
🔽 BOTH
Order
documentType 📶 EQUALS
, ENUM
OrderItem
name 📶 STRING
🔽 BOTH
Course
name 📶 STRING
🔽 BOTH
Table
name 📶 STRING
🔽 BOTH
type 📶 EQUALS
, ENUM
Fix bug causing invalid response object for some clients.
Fix minor issues.
Rollback the change that wrapped the downloaded XML document inside a <DEASDV> tag.
Add support for takeaway on items.
Add support for order takeaway.
Add support for changing items' courses.
Add support for course preparation command.
Fix error when deleting an Employee.
Create/update product ingredients and product customizations.
Filter to get open orders and open order items.
Delivery notes importing.
Improved performance when paging these entities: Orders, Order items and Money logs.
_branchId
integer
📶 EQUALS
,ENUM
_cloudId
integer
📶 EQUALS
,ENUM
_courseId
long?
📶 EQUALS
,ENUM
_customerId
long?
📶 EQUALS
,ENUM
_eetSubjectId
long?
📶 EQUALS
,ENUM
_employeeId
long?
📶 EQUALS
,ENUM
_relatedInvoiceId
long?
📶 EQUALS
,ENUM
_relatedOrderId
long?
- Field is deprecated use _sourceOrderId
📶 EQUALS
,ENUM
_sourceOrderId
long?
📶 EQUALS
,ENUM
_tableId
long?
📶 EQUALS
,ENUM
Please see the page for more info on the planned changes in validation.
_cloudId
integer
vatId
string(255)
Customer VAT ID (CZ: DIČ, PL: NIP). Validation .
📶 STRING
_cloudId
long
_parentProductId
long
Parent which the ingredient belongs to
📶 EQUALS
,ENUM
_productId
long
for the ingredient
📶 EQUALS
,ENUM
unit
enum
Ingredient
📶 EQUALS
_branchId
integer
📶 EQUALS
,ENUM
_categoryId
long
📶 EQUALS
,ENUM
_cloudId
integer
📶 EQUALS
,ENUM
_courseId
long?
📶 EQUALS
,ENUM
_customerId
long?
📶 EQUALS
,ENUM
_eetSubjectId
long?
📶 EQUALS
,ENUM
_employeeId
long
📶 EQUALS
,ENUM
_orderId
long
📶 EQUALS
,ENUM
_productId
long
📶 EQUALS
,ENUM
_relatedOrderItemId
long?
📶 EQUALS
,ENUM
unit
enum
Item / Product
_branchId
integer
📶 EQUALS
,ENUM
_cloudId
integer
_customerId
long
📶 EQUALS
,ENUM
_employeeId
long
📶 EQUALS
,ENUM
_tableId
long
📶 EQUALS
,ENUM
seats
short
Number of table seats - minimum value is 1, maximum value must be less or equal to the number of seats in the entity (Table.seats
).
_categoryId
long
📶 EQUALS
,ENUM
_cloudId
long
_productId
long
📶 EQUALS
,ENUM
_defaultProductIds
string[]
Default selection of multiple
_cloudId
integer
_cloudId
integer
🔽 NONE
vatId
string(255)
Supplier VAT ID (CZ: DIČ, PL: NIP). Validated by a .
📶 EQUALS
,ENUM
🔽 NONE
websiteUrl
string?
Website URL. Validated by a .
_branchId
integer
📶 EQUALS
,ENUM
_cloudId
integer
Please see the page for more info on the planned changes in validation.
_categoryId
long
📶 EQUALS
,ENUM
🔽 NONE
_cloudId
integer
🔽 NONE
_defaultCourseId
long?
📶 EQUALS
,ENUM
_eetSubjectId
long?
📶 EQUALS
,ENUM
🔽 NONE
_supplierId
long?
📶 EQUALS
,ENUM
🔽 NONE
allergens
int[]
Product allergens in the form of numbers. See the Annex II in the .
stockOverdraft
enum
allows to set whether the product can be sold even if its quantity in the stock is equal or less than 0 - or just display a warning in that case
🔽 NONE
unit
enum
Product
📶 EQUALS
🔽 NONE
unitMeasurement
enum?
for product measurement
🔽 NONE
_branchId
integer?
📶 EQUALS
,ENUM
_cloudId
integer
_cloudId
integer
_cloudId
integer
🔽 NONE
Response product with stock status is an extension for the response entity. That means all fields from the can also be found in the .
_warehouseId
long
ID
📶 EQUALS
,ENUM
_supplierId
long?
_closeDeliveryNoteIds
array<long>?
Array of IDs to be marked as closed when the stock-up completes successfully.
_productId
long? [1]
_originWarehouseId
long
_productId
long? [1]
_productId
long? [1]
Add new fields into the response from .
Limit allowed characters for tag names for , , and entities.
Added new code 70302002
to the in the
Add preparationDuration
into , and its .
Deprecated field purchase price without VAT in the . The field remains available for the endpoints.
New action .
Deprecated field purchase price without VAT in the .
Add new .
Add new sections employeeTips
and paymentMethodTips
into .
Add .
Allow sorting of by the sortOrder
field.
Add field translatedName
for , , and .
Add field translatedDescription
for .
Add support for filtering by .
Fix accessLevel
for newly created .
Add new items into enum .
Updated XSD for .
now returns customizations for each item.
Deny creation of the entity with name
starting with "." (a dot).
Endpoint should not return product shortcuts.
Make stable when iterating through pages. Now the API should not return duplicated entities and no entities should be skipped.
The have just come into effect.
Better description of exceptions in
Performance optimization of the .
Fix to support fields of the timestamp data type.
Add field _closeDeliveryNoteIds
into the .
Add the birthday
field description into the entity.
Add entity , .
Add field allergens
into the entity.
Add new endpoints to list .
Updated list of .
Add new endpoint to list and configure .
Disable VAT validation for and endpoints.
Add validation of VAT into and .
Add request limit on
Add tipAmount
field into and entities.
Add support for .
Add new payloadEntity "RESERVATION" for
Add new field stockStatusVersionDate
into the entity.
Add property flags for entity.
Describe support for retrieving in certain requests in Slovakia.
Describe support for .
Add new section for into the documentation.
Data type for flags
changed from short
to long
in the entity.
Fix occasional error when creating or updating a .
Add of electronic Delivery notes.
Update regular expressions.
Add filter for field status
.
Add endpoints for the entity.
New values for .transactionType.
The cannot be deleted if it is part of EOS.
- only empty category can be .
Add new field websiteUrl
for the entity.
Add new transaction type enum values for the entity.
margin entered as a percentage cannot be over 100% (margin <= 100%).
Add support for sorting by vatId
and enabled
.
URL scheme in the field url
of newly uploaded changed from http
to https
to avoid security warnings in browsers. The XML file downloadable via this URL will newly have a <DOCUMENT>
wrapped inside a <DEASDV>
tag.
Allow to create a with the same name as previously deleted.
Fix validation of vatId
to support Swiss vat id format in , ,
Fix validation.
Add new .
Add a new field priceLevel
into .
Add support for sorting by EAN and PLU.
Allow deleting imageUrl
for a by setting it to null.
Add a new field reason
into the error response to programmatically distinguish more detailed cause of 401 and 403.
Fix number formats in response.
Add support for alternative currency and filtering by seller id into the .
Add endpoints to get and filter the .
Fix updates when its tags start or end with a space character.
Add support for sorting by priceWithoutVat
.
Add new field merchantPrintData
for the entity.
Add new endpoints for getting the .
Fix validation issues for the endpoints.
Fix issues when assigning branches to warehouse (entity )
Add support for the Corrency.
Fix error when updating a with name
equal to null
.
Add support for sorting by priceWithVat
and vat
.
Add support for sorting by name
.
Add support for type RETURN
of documents.
Response for uploads changed to list of entities.
Add alternative name and price levels into the entity.
Add alternative name into the entity.
Add strategy for deleting a with ingredients.
Fix encoding of imported documents.
- only empty category can be .
Add (ENUM, EQUALS) on properties tags, ean, plu for all entitites.
Improve validation for vatId for all entities. Read for entity and regex for vatId validation find in general .
Default sorting when paging these entities: , and .
Bit
Name
0
SHORTCUT
1
REQUIRES_QUANTITY_ENTRY
2
REQUIRES_PRICE_ENTRY
3
TIMEABLE
5
MANUAL_SALE_ITEM
6
TIMEABLE_LOCKED
7
JOINT_SALE_ITEM
8
FISCALIZATION_DISABLED
10
ASSEMBLED_ITEM
11
TAKE_AWAY
12
TAKE_AWAY_ITEM
13
SPECIAL
14
WITH_CUSTOMIZATIONS
15
EXEMPTED_VAT
18
UNCERTIFIED_QUANTITY(18)
cloudId*
integer
sort
string
filter
string
page
integer
limit
integer
include
array
Include other entities [1]
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
cloudId*
integer
productId*
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
cloudId*
integer
Authorization*
string
Bearer accessToken
array
Array of products. Maximum size 100.
cloudId*
integer
If-Match
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
array
Array of products. Maximum size 100.
cloudId*
integer
productId*
integer
If-Match
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
object
Product
cloudId*
integer
productId*
integer
If-Match*
string
ETag to update only if not changed.
Authorization*
string
Bearer accessToken
object
Part of product object
cloudId*
integer
productId*
integer
If-Match
string
ETag ignored (temporarily) when deleting an entity.
Authorization*
string
Bearer accessToken
productIsIngredient
string
Strategy when product is an ingredient [1]
productHasIngredients
string
Strategy when product has ingredients [1]
cloudId*
integer
Authorization*
string
Bearer accessToken
cloudId*
integer
productId*
integer
Authorization*
string
Bearer accessToken
cloudId*
integer
sort
string
filter
string
page
integer
limit
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
tableId*
integer
cloudId*
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
cloudId*
integer
Authorization*
string
Bearer accessToken
tableId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
(none)
(none) or BC0
The endpoints return status 404 and empty BODY.
BC1
BC1
The endpoints return status 200 and BODY with JSON pagination structure and no data ("totalItemsCount": "0"
). This change might simplify the implementation for some clients.
(none)
BC0
The flags
field is optional so it can be omitted or null.
BC1
BC1 or (none)
The flags
field is required. Make sure the JSON structure contains "flags": 0
or "flags": "0"
to imply there are no flags.
(none)
BC0
The following values are ignored when updating: enabled
(forced true
), deleted
(forced false
), accessLevel
(forced all rights), stockAccessLevel
(forced all rights).
BC1
BC1 or (none)
Only the default (unchanged) values are accepted on update. If any value (enabled
, deleted
, accessLevel
, stockAccessLevel
) is changed, an error 400 Bad Request
is returned.
cloudId*
integer
sort
string
filter
string
page
integer
limit
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
tagId*
integer
cloudId*
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
cloudId*
integer
Authorization*
string
Bearer accessToken
array
Array of tags. Maximum size 100.
cloudId*
integer
Authorization*
string
Bearer accessToken
tagId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
cloudId*
integer
sort
string
filter
string
page
integer
limit
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
warehouseId*
integer
cloudId*
integer
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
cloudId*
integer
ID of the cloud.
Authorization*
string
Bearer accessToken
cloudId*
integer
ID of the cloud.
warehouseId*
integer
ID of the warehouse to replace.
Authorization*
string
Bearer accessToken
If-Match
string
ETag to update only if not changed.
cloudId*
integer
ID of the cloud.
Authorization*
string
Bearer accessToken
If-Match
string
ETag to update only if not changed.
cloudId*
integer
ID of the cloud.
warehouseId*
integer
ID of the warehouse to patch.
Authorization*
string
Bearer accessToken
If-Match*
string
ETag to update only if not changed.
cloudId*
integer
ID of the cloud.
warehouseId*
integer
ID of the warehouse to delete.
Authorization*
string
Bearer accessToken
If-Match
string
ETag ignored (temporarily) when deleting an entity.
warehouseId*
integer
cloudId*
integer
sort
string
filter
string
page
string
limit
string
Authorization*
string
Bearer accessToken
If-None-Match
string
ETag to return results only if changed.
productId*
string
warehouseId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
If-None-Match
string
ETag to return results only if changed.
warehouseId*
string
cloudId*
integer
Authorization*
string
Bearer accessToken
object
Stockup Schema
warehouseId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
object
Transfare Schema
warehouseId*
integer
cloudId*
integer
Authorization*
string
Bearer accessToken
object
Warehouse Sale Schema
cloudId*
integer
warehouseId*
integer
Authorization*
string
Bearer accessToken
object
Stock-taking schema
cloudId*
integer
warehouseId*
integer
Authorization*
string
Bearer accessToken
object
Get stock-taking dates schema
GET /v2/clouds/:cloudId/customers
GET /v2/clouds/:cloudId/customers/:customerId
POST /v2/clouds/:cloudId/customers
Replace or create PUT /clouds/:cloudId/customers PUT /clouds/:cloudId/customers/:customerId
Partial update PATCH /v2/clouds/:cloudId/customers/:customerId
DELETE /v2/clouds/:cloudId/customers/:customerId
GET /v2/clouds/:cloudId/categories
GET /v2/clouds/:cloudId/categories/:categoryId
POST /v2/clouds/:cloudId/categories
Replace or create PUT /clouds/:cloudId/categories PUT /clouds/:cloudId/categories/:categoryId
Partial update PATCH /v2/clouds/:cloudId/categories/:categoryId
DELETE /v2/clouds/:cloudId/categories/:categoryId
created
timestamp
Report created date and time
from
timestamp
Report start date and time
to
timestamp
Report end date and time
registerName
string
Branch name
moneyTransactionInfo.currency
string
Money transactions - primary currency
moneyTransactionInfo.saleCount
integer
Money transactions - sales count
moneyTransactionInfo.saleValue
double
Money transactions - sales value
moneyTransactionInfo.rawSaleValue
double
Money transactions - sales value in alternative currency
moneyTransactionInfo.cancelCount
integer
Money transactions - cancelled count
moneyTransactionInfo.cancelValue
double
Money transactions - cancelled value
moneyTransactionInfo.rawCancelValue
double
Money transactions - cancelled value in alternative currency
moneyTransactionInfo.cashAdvanceCount
integer
Money transactions - cash advance count
moneyTransactionInfo.cashAdvanceValue
double
Money transactions - cash advance value
moneyTransactionInfo.rawCashAdvanceValue
double
Money transactions - cash advance value in alternative currency
moneyTransactionInfo.cashInCount
integer
Money transactions - cash in count
moneyTransactionInfo.cashInValue
double
Money transactions - cash in value
moneyTransactionInfo.rawCashInValue
double
Money transactions - cash in value in alternative currency
moneyTransactionInfo.cashOutCount
integer
Money transactions - cash out count
moneyTransactionInfo.cashOutValue
double
Money transactions - cash out value
moneyTransactionInfo.rawCashOutValue
double
Money transactions - cash out value in alternative currency
moneyTransactionInfo.alternativeCurrencySalesAmount.amount
double
Money transactions - sales amount in alternative currency
moneyTransactionInfo.alternativeCurrencyCancelAmount.amount
double
Money transactions - cancellations amount in alternative currency
moneyTransactionInfo.alternativeCurrencyCashAdvanceAmount.amount
double
Money transactions - cash advance in alternative currency
moneyTransactionInfo.alternativeCurrencyCashInAmount.amount
double
Money transactions - cash in amount in alternative currency
moneyTransactionInfo.alternativeCurrencyCashOutAmount.amount
double
Money transactions - cash out amount in alternative currency
revenue.totalWithVat
double
Revenue - total value with VAT
revenue.totalVat
double
Revenue - total VAT value
revenue.totalWithoutVat
double
Revenue - total value without VAT
revenue.vatInfo.rate
double
Revenue - VAT rate
revenue.vatInfo.base
double
Revenue - VAT base value
revenue.vatInfo.value
double
Revenue - VAT value
revenue.vatInfo.special
double
Revenue - VAT special
revenue.paymentTypeInfo.typeId
integer
Revenue - payment type id
revenue.paymentTypeInfo.count
integer
Revenue - count for the payment type
revenue.paymentTypeInfo.total
double
Revenue - total value for the payment type
revenue.paymentTypeInfo.rawTotal
double
Revenue - total value for the payment type in alternative currency
revenue.paymentTypeInfo.currency
string
Revenue - alternative currency for the rawTotal
discounts.employee.name
string
Discounts - employee name
discounts.employee.id
long
Discounts - employee ID
discounts.count
integer
Discounts - count
discounts.value
double
Discounts - value
discounts.valueWithoutVat
double
Discounts - value without VAT
cashInOutTransactions.id
long
Cash in/out transactions - money log ID
cashInOutTransactions.dir
boolean
Cash in/out transactions - always false (unused)
cashInOutTransactions.created
timestamp
Cash in/out transactions - money log created
cashInOutTransactions.employee.name
string
Cash in/out transactions - employee name
cashInOutTransactions.employee.id
long
Cash in/out transactions - employee ID
cashInOutTransactions.value
double
Cash in/out transactions - money log value
cashInOutTransactions.note
string
Cash in/out transactions - money log note
categorySales.value
double
Sales by category - value
categorySales.valueWithoutNonPurchase
double
Sales by category - value without non purchase
categorySales.purchaseValue
double
Sales by category - purchase value
categorySales.valueWithoutVAT
double
Sales by category - value without VAT
categorySales.valueWithoutNonPurchaseWithoutVAT
double
Sales by category - value without non purchase without VAT
categorySales.purchaseValueWithoutVAT
double
Sales by category - purchase value without VAT
categorySales.id
long
Sales by category - category ID
categorySales.name
string
Sales by category - category name
productSales.value
double
Sales by product - value
productSales.valueWithoutNonPurchase
double
Sales by product - value without non purchase
productSales.purchaseValue
double
Sales by product - purchase value
productSales.valueWithoutVAT
double
Sales by product - value without VAT
productSales.valueWithoutNonPurchaseWithoutVAT
double
Sales by product - value without non purchase without VAT
productSales.purchaseValueWithoutVAT
double
Sales by product - purchase value without VAT
productSales.id
long
Sales by product - product ID
productSales.name
string
Sales by product - product name
productSales.count
integer
Sales by product - items count
productSales.unit
enum
Sales by product - item units
productSales.categoryId
long
Sales by product - category ID
tagSales.value
double
Sales by tag - value
tagSales.valueWithoutNonPurchase
double
Sales by tag - value without non purchase
tagSales.purchaseValue
double
Sales by tag - purchase value
tagSales.valueWithoutVAT
double
Sales by tag - value without VAT
tagSales.valueWithoutNonPurchaseWithoutVAT
double
Sales by tag - value without non purchase without VAT
tagSales.purchaseValueWithoutVAT
double
Sales by tag - purchase value without VAT
tagSales.name
string
Sales by tag - tag name
employeeSales.value
double
Sales by employee - value
employeeSales.valueWithoutNonPurchase
double
Sales by employee - value without non purchase
employeeSales.purchaseValue
double
Sales by employee - purchase value
employeeSales.valueWithoutVAT
double
Sales by employee - value without VAT
employeeSales.valueWithoutNonPurchaseWithoutVAT
double
Sales by employee - value without non purchase without VAT
employeeSales.purchaseValueWithoutVAT
double
Sales by employee - purchase value without VAT
employeeSales.id
long
Sales by employee - employee ID
employeeSales.name
string
Sales by employee - employee name
customerSales.value
double
Sales by customer - value
customerSales.valueWithoutNonPurchase
double
Sales by customer - value without non purchase
customerSales.purchaseValue
double
Sales by customer - purchase value
customerSales.valueWithoutVAT
double
Sales by customer - value without VAT
customerSales.valueWithoutNonPurchaseWithoutVAT
double
Sales by customer - value without non purchase without VAT
customerSales.purchaseValueWithoutVAT
double
Sales by customer - purchase value without VAT
customerSales.id
long
Sales by customer - customer ID
customerSales.name
string
Sales by customer - customer name
proxySales.value
double
Sales by EET subject - value
proxySales.valueWithoutNonPurchase
double
Sales by EET subject - value without non purchase
proxySales.purchaseValue
double
Sales by EET subject - purchase value
proxySales.valueWithoutVAT
double
Sales by EET subject - value without VAT
proxySales.valueWithoutNonPurchaseWithoutVAT
double
Sales by EET subject - value without non purchase without VAT
proxySales.purchaseValueWithoutVAT
double
Sales by EET subject - purchase value without VAT
proxySales.id
long
Sales by EET subject - EET subject ID
proxySales.name
string
Sales by EET subject - EET subject name
takeawaySales.value
double
Sales by take-away/eat-in - value
takeawaySales.valueWithoutNonPurchase
double
Sales by take-away/eat-in - value without non purchase
takeawaySales.purchaseValue
double
Sales by take-away/eat-in - purchase value
takeawaySales.valueWithoutVAT
double
Sales by take-away/eat-in - value without VAT
takeawaySales.valueWithoutNonPurchaseWithoutVAT
double
Sales by take-away/eat-in - value without non purchase without VAT
takeawaySales.purchaseValueWithoutVAT
double
Sales by take-away/eat-in - purchase value without VAT
takeawaySales.id
integer
Sales by take-away/eat-in - 1 = take-away, 0 = eat-in
fiscalizationSales.value
double
Sales by fiscalization - value
fiscalizationSales.valueWithoutNonPurchase
double
Sales by fiscalization - value without non purchase
fiscalizationSales.purchaseValue
double
Sales by fiscalization - purchase value
fiscalizationSales.valueWithoutVAT
double
Sales by fiscalization - value without VAT
fiscalizationSales.valueWithoutNonPurchaseWithoutVAT
double
Sales by fiscalization - value without non purchase without VAT
fiscalizationSales.purchaseValueWithoutVAT
double
Sales by fiscalization - purchase value without VAT
fiscalizationSales.id
integer
Sales by fiscalization - 1 = fiscalization required, 0 = not required
receiptInfo.type
string
Order items - item type: "cancelled"
, "cancellation"
, "unpaid"
, "total"
receiptInfo.value
double
Order items - value of items of the given type
receiptInfo.count
integer
Order items - count of items of the given type
employeePayments.employeeId
long
Payments by employee - Employee ID
employeePayments.employeeName
string
Payments by employee - Employee name
employeePayments.paymentMethodId
integer
Payments by employee - Payment method ID
employeePayments.count
integer
Payments by employee - Count of payments
employeePayments.total
double
Payments by employee - Total value of payments
employeePayments.rawTotal
double
Payments by employee - Total value of payments in alternative currency
employeePayments.currency
string
Payments by employee - Alternative currency for the rawTotal
employeeTips.name
string
Tips by employee - Employee name
employeeTips.currency
string
Tips by employee - Alternative currency
employeeTips.tipAmount
double
Tips by employee - Total value of tips for the employee in the alternative currency.
employeeTips.tipAmountMainCurrency
double
Tips by employee - Total value of tips for the employee in the main currency.
paymentMethodTips.name
string
Tips by payment methods - Payment method name (localized using the lang
query parameter)
paymentMethodTips.currency
string
Tips by payment methods - Alternative currency
paymentMethodTips.tipAmount
double
Tips by payment methods - Total value of tips for the payment method in the alternative currency.
paymentMethodTips.tipAmountMainCurrency
double
Tips by payment methods - Total value of tips for the payment method in the main currency.
writeoffs.productId
long
Written off items - product ID
writeoffs.name
string
Written off items - product name
writeoffs.count
double
Written off items - count (quantity)
writeoffs.pricePurchaseWithoutVat
double
Written off items - purchase price without VAT
writeoffs.unit
string
Written off items - unit of the quantity
writeoffs.currency
string
Written off items - currency of the purchase price
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/branches/:branchId/sales-report
Generate the base sales report.
cloudId
integer
ID of the cloud.
branchId
integer
ID of the branch.
vatPayer
boolean
Whether you are a VAT payer or not.
dateFrom
string
Interval start date as an ISO date-time with zone offset or a time-stamp in milliseconds.
dateTo
string
Interval end date as an ISO date-time with zone offset or a time-stamp in milliseconds.
_sellerId
number
Seller ID used as a filter or null to count all the sellers.
lang
string
2-letter lowercase ISO language code.
Authorization
string
Bearer accessToken
Get all reservations for branch GET /v2/clouds/:cloudId/reservations?filter=_branchId|eq|:branchId GET /v2/clouds/:cloudId/reservations?filter=_branchId|in|:branchId1,:branchId2 Get all reservations for cloud GET /v2/clouds/:cloudId/reservations
GET /v2/clouds/:cloudId/reservations/:reservationId
POST /v2/clouds/:cloudId/reservations
Replace or create PUT /v2/clouds/:cloudId/reservations PUT /v2/clouds/:cloudId/reservations/:reservationId
Partial update PATCH /v2/clouds/:cloudId/reservations/:reservationId
DELETE /v2/clouds/:cloudId/reservations/:reservationId
GET /v2/clouds/:cloudId/employees
GET /v2/clouds/:cloudId/employees/:employeeId
POST /v2/clouds/:cloudId/employees
Replace or create PUT /clouds/:cloudId/employees PUT /clouds/:cloudId/employees/:employeeId
Partial update PATCH /v2/clouds/:cloudId/employees/:employeeId
DELETE /v2/clouds/:cloudId/employees/:employeeId
GET /v2/clouds/:cloudId/order-items/:orderItemId
GET /v2/clouds/:cloudId/money-logs ?filter=_branchId|eq|:branchId;transactionType|in|REGISTER_OPEN,REGISTER_CLOSE &sort=-created
Pseudo-code to get results similar to API v1
List shiftRangeList = new List()
ShiftRange shiftRange = new ShiftRange()
for each moneyLog in result {
if (moneyLog.transactionType == "REGISTER_OPEN") {
shiftRange.start = moneyLog.created
shiftRange.openedBy = moneyLog._employeeId
shiftRangeList.append(shiftRange)
}
if (moneyLog.transactionType == "REGISTER_CLOSE") {
shiftRange.end = moneyLog.created
shiftRange.closedBy = moneyLog._employeeId
shiftRange = new ShiftRange()
}
}
Convert employee ID into employee name
GET /v2/clouds/:cloudId/employees/:employeeId
GET /v2/clouds/:cloudId/branches/:branchId/sales-report?vatPayer=:vatPayer&dateFrom=:dateFrom&dateTo=:dateTo
GET /v2/clouds/:cloudId/orders?filter=_branchId|eq|:branchId;id|eq|:orderId&include=orderItems
Note: filter on branch ID is redundant, order ID is sufficient to identify a single order.
GET /v2/clouds/:cloudId/orders?filter=id|eq|:orderId&include=orderItems
GET /v2/clouds/:cloudId/money-logs/:moneyLogId
Note: filter on branch ID is redundant, money log ID is sufficient to identify a single money log.
GET /v2/clouds/:cloudId/orders
With order items GET /v2/clouds/:cloudId/orders?include=orderItems
GET /v2/clouds/:cloudId/orders?filter=_branchId|eq|:branchId
With order items GET /v2/clouds/:cloudId/orders?filter=_branchId|eq|:branchId&include=orderItems
GET /v2/clouds/:cloudId/order-items
GET /v2/clouds/:cloudId/order-items?filter=_branchId|eq|:branchId GET /v2/clouds/:cloudId/order-items?filter=_branchId|in|:branchId1,:branchId2
GET /v2/clouds/:cloudId/money-logs
GET /v2/clouds/:cloudId/money-logs?filter=_branchId|eq|:branchId GET /v2/clouds/:cloudId/money-logs?filter=_branchId|in|:branchId1,:branchId2
GET /v2/clouds/:cloudId/orders?filter=_branchId|eq|:branchId&namedFilter=openOrders
with order items: GET /v2/clouds/:cloudId/orders?filter=_branchId|eq|:branchId&include=orderItems&namedFilter=openOrders;orderItems.openOrderItems
GET /v2/clouds/:cloudId/products/:productId
GET /v2/clouds/:cloudId/warehouses/:warehouseId/products
GET /v2/clouds/:cloudId/warehouses/:warehouseId/products/:productId
DELETE /v2/clouds/:cloudId/products/:productId
GET /v2/clouds/:cloudId/products
GET /v2/clouds/:cloudId/product-ingredients?filter=_parentProductId|eq|:productId
GET /v2/clouds/:cloudId/products?filter=id|eq|:productId&include=ingredients
POST /v2/clouds/:cloudId/products
Replace or create PUT /v2/clouds/:cloudId/products PUT /v2/clouds/:cloudId/products/:productId
Partial update PATCH /v2/clouds/:cloudId/products/:productId
GET /v2/clouds/:cloudId/product-ingredients
POST/PUT /v2/clouds/:cloudId/product-ingredients
Partial update PATCH /v2/clouds/:cloudId/product-ingredients/:ingredientId
DELETE /v2/clouds/:cloudId/product-ingredients/:ingredientId
GET /v2/clouds/:cloudId/warehouses
GET /v2/clouds/:cloudId/warehouses/:warehouseId
POST /v2/clouds/:cloudId/warehouses
Replace or create PUT /v2/clouds/:cloudId/warehouses PUT /v2/clouds/:cloudId/warehouses/:warehouseId
Partial update PATCH /v2/clouds/:cloudId/warehouses/:warehouseId
DELETE /v2/clouds/:cloudId/warehouses/:warehouseId
POST /v2/clouds/:cloudId/warehouses/:warehouseId/stockups
GET /v2/clouds/:cloudId/warehouses?filter=enabled|eq|true
POST /v2/clouds/:cloudId/warehouses/:warehouseId/sales
POST /v2/clouds/:cloudId/branches/:branchId/delivery-note-uploads
GET /v2/clouds/:cloudId/suppliers
GET /v2/clouds/:cloudId/suppliers/:supplierId
POST /v2/clouds/:cloudId/suppliers
Replace or create PUT /v2/clouds/:cloudId/suppliers PUT /v2/clouds/:cloudId/suppliers/:supplierId
Partial update PATCH /v2/clouds/:cloudId/suppliers/:supplierId
DELETE /v2/clouds/:cloudId/suppliers/:supplierId
(none)
BC0
The VAT is not validated.
BC1
BC1 or (none)
Send action to specific branch
Send action directly to a branch device and response will send to webhook. Branch device must be turned on.
Response header Response-url contains webhook URL from request body. If you don't sent webhook in request or webhook is null, response body contains response from default webhook URL.
If the default URL is used and the target device doesn't process the request within 21 seconds, a response 404 Not Found is returned.
The number of requests when using the default webhook URL is limited to one request running at same time for the same combination of userId, clientId, cloudId, branchId.
When the limit is exceeded response code 429 - Too Many Requests
is returned.
Response status code is primary OK 200. For correct status use code
properties in webhook response.
Represent the result of processing. There are NOT the response codes.
Code
Value
Description
0
CODE_OK
100
CODE_OTHER
1001
REQUEST_ERROR
1002
CONFIGURATION_ERROR
Current configuration of cash register does not allow to perform requested POS action.
1003
MISSING_ACTION
Your request is missing action parameter
1004
UNKNOWN_ACTION
Requested action is unknown or no more supported
1005
DATA_FORMAT_ERROR
1006
LICENSE_ERROR
License of the Cash Register is not sufficient to perform requested POS action.
1007
EXPIRED_REQUEST
validity
of request is expired
1008
USER_NOT_FOUND
user-id
of request was not found in App
1009
ACTION_NOT_ALLOWED_FOR_COUNTRY
1.242+ Executed action is not allowed for current POS country.
1999
SERVER_ERROR
2001
ORDER_LOCKED
Requested order is locked to another service/user
2002
ORDER_NOT_FOUND
Order with given id not found
2003
ORDER_PAYMENT_METHOD_NOT_FOUND
Payment method with given id not found
2004
ORDER_PAID
Order is already paid
2005
ORDER_ISSUED
Order is already issued
2006
ORDER_NOT_ISSUED
Order is not issued yet
2007
INVALID_PRINT_EMAIL
SK print-email
is required to be a valid email for give print-type
.
2008
INVALID_PRINT_TYPE
SK print-type
none
is not supported.
2009
ORDER_NOT_EMPTY
Order is not empty, there are some items in it.
2010
ORDER_ALREADY_CANCELED
Order can't be canceled as it is already canceled.
2011
EOS_ORDER
Order is created by EOS, it can't be modified
2999
ORDER_OTHER
3001
REGISTER_CLOSED
Cash Register is closed. You need to open the cash register to be able to do any order modifications.
4001
PRODUCT_NOT_FOUND
Requested product was not found in database of Cash Register
5001
ORDER_ITEM_NOT_FOUND
The item of the selected order is not presented on the order.
5002
ORDER_ITEM_LOW_QUANTITY
Requested change cannot be performed due to low quantity of order item.
5003
ORDER_ITEM_NEGATIVE_QUANTITY
Requested change cannot be performed due to negative quantity change in request.
6001
ORDER_TRANSITION_UNKNOWN
The requested transition is not known (maybe old version of Dotypos App).
6002
ORDER_TRANSITION_DENIED
The requeste transition could not be performed.
7001
COURSE_CHANGE_NOT_ALLOWED_FOR_PRODUCT
The specified course is not allowed for the given product.
7002
COURSE_CHANGE_ITEM_ALREADY_PREPARED
Unable to change item's course because this item has already been prepared.
8001
TAKE_AWAY_NOT_ENABLED
Takeaway is disabled on POS.
8002
TAKE_AWAY_NOT_ALLOWED_FOR_PRODUCT
Takeaway is not allowed for given product (see response for details).
8003
TAKE_AWAY_NOT_ALLOWED_FOR_ORDER
Takeaway is not allowed for whole orders.
8004
TAKE_AWAY_NOT_ENABLED_FOR_ORDERS_WITH_NO_TAKEAWAY_ITEMS
Unable to set the order as takeaway because the order does not contain any items with takeaway allowed.
10001
CUSTOMIZATION_NOT_FOUND
No customization found for the given id (see response for details).
10002
CUSTOMIZATION_CATEGORY_NOT_FOUND
No customization category found for the given id (see response for details).
10003
PRODUCT_NOT_FOUND (when working with customizations)
No product found for the given id (see response for details).
10004
PRODUCT_NOT_FOUND_IN_CUSTOMIZATION
Product with given id couldn't be found in given customization (see response for details).
10005
INVALID_SELECTED_QUANTITY
The given quantity of a product is not within customization's bounds (see response for details).
70302001
BLOCKED_BY_FAILED_PRINT
2.10+ SK Order fiscalization failed because previous fiscal document is not printed. It must be printed first by Print last document action
70302002
ISSUED_FISCALIZATION_FAILED
2.12+ SK Order issued, but fiscalization failed.
All request shares some basic parameters listed below. For better readability are those parameters are not shown in all methods.
action
string
Name of action
webhook
string?
Webhook URL for action response
validity
long?
Validity of request in Unix timestamp. If the time on cash register is greater than this value, the request will not be performed with response code 1007
idempotency-key
string? (Since Dotypos 2.1)
Optional identification of a webhook call. It provides way for you to identify retried (same) webhook calls. When webhook
parameter is filled, Dotypos will call the given URL with the Idempotency-Key
header containing this value. If you do not specify idempotency-key
, it will be automatically generated and sent.
Returns basic POS metadata can be used for POS liveness checks, timezone configuration, or time shift.
customer-id
long?
The value corresponds to _customerId
discount-percent
double? (1.238.12+)
Value of discount in percent value: 20 = 20%
table-id
long?
The value corresponds to _tableId
user-id
long?
The value corresponds to _employeeId
note
string?
Personal note to order
external-id
string?
External id of the order
lock
boolean? (1.234+)
If set to true the order will be locked for 45 s for external changes
customer-id
long?
The value corresponds to _customerId
discount-percent
double?
Value of discount in percent value: 20 = 20%
note
string?
Personal note to order
order-id
long
Order ID for action. The value corresponds to _orderId
lock
boolean? (1.234+)
If se to true the order will be locked for 45 s for external changes
order-id
long
Order ID for action. The value corresponds to _orderId
lock
boolean? (1.234+)
If set to true the order will be locked for 45 s for external changes
id
long
Corresponds to _productId
qty
double
Item / product quantity
note
string?
Note for item / product
discount-percent
double?
Value of discount in percent value: 20 = 20%
manual-price
double?
Product price
manual-points
double?
Points
tags
string[]?
Note for item
course-id
long?
Id of a course.
Since Dotypos 1.237
Dotypos 1.234+ required
product-customization-id
long
Corresponds to _productCustomizationId
product-id
long
Corresponds to _productId
manual-price
double?
Customization item price override (default behavior if null or empty)
Since Dotypos 2.9
take-away
boolean?
Whether to sell this item as takeaway.
Since Dotypos 1.237.
order-id
long
Order ID of order to split. The value corresponds to _orderId
customer-id
long?
The value corresponds to _customerId
table-id
long?
The value corresponds to _tableId
note
string?
Personal note to order
lock
boolean?
If set to true the newly created order will be locked for 45 s for external changes
Not allowed in following countries: Slovakia.
order-id
long
Order ID for action. The value corresponds to _orderId
print-email
string?
Email for print type
take-away
boolean?
Whether to issue this order as takeaway.
Since Dotypos 1.237.
Not allowed in following countries: Slovakia.
order-id
long
Order ID for action. The value corresponds to _orderId
Not allowed in following countries: Slovakia.
customer-id
long?
The value corresponds to _customerId
discount-percent
double? (1.238.12+)
Value of discount in percent value: 20 = 20%
table-id
long?
The value corresponds to _tableId
user-id
long?
The value corresponds to _employeeId
note
string?
Personal note to order
external-id
string?
External id of the order
take-away
boolean?
Whether to issue this order as takeaway.
Since Dotypos 1.237.
customer-id
long?
The value corresponds to _customerId
discount-percent
double? (1.238.12+)
Value of discount in percent value: 20 = 20%
table-id
long?
The value corresponds to _tableId
user-id
long?
The value corresponds to _employeeId
note
string?
Personal note to order
external-id
string?
External id of the order
print-append
string?
Text to be appended to printout
print-email
string?
Email for print type
take-away
boolean?
Whether to issue this order as takeaway.
Since Dotypos 1.237.
Not allowed in following countries: Slovakia.
order-id
long
Order ID of order to split. The value corresponds to _orderId
customer-id
long?
The value corresponds to _customerId
table-id
long?
The value corresponds to _tableId
note
string?
Personal note to order
print-email
string?
Email for print type
lock
boolean?
If set to true the original order will be locked for 45 s for external changes
take-away
boolean?
Whether to issue this order as takeaway.
Since Dotypos 1.237.
order-id
long
Order ID of order to split. The value corresponds to _orderId
customer-id
long?
The value corresponds to _customerId
table-id
long?
The value corresponds to _tableId
note
string?
Personal note to order
print-email
string?
Email for print type
lock
boolean?
If set to true the original order will be locked for 45 s for external changes
take-away
boolean?
Whether to issue this order as takeaway.
Since Dotypos 1.237.
order-id
long
Order ID for action. The value corresponds to _orderId
print-append
string?
Text to be appended to printout
print-email
string?
Email for print type
take-away
boolean?
Whether to issue this order as takeaway.
Since Dotypos 1.237.
order-id
long
Order ID for action. The value corresponds to _orderId. Order must be empty - it can't have any items.
This endpoint is in active development phase. List of available transitions and their limitations could be changed in any further release of Dotypos App.
order-id
long
Order ID for action. The value corresponds to _orderId
table-id
long?
Table ID, list all orders if not presented, null
for orders outside table
order-id
long
ID of the order.
order-item-id
long
ID of an order item.
new-course-id
long?
ID of a new course for the given item within an order.
order-id
long
ID of an order.
0
DOCUMENT_PRINTED
Failed document was printed, fiscalization is fixed and new documents can be issued
1
INVALID_COUNTRY
Call was made not for SK register, call is noop in this case
2
NO_DOCUMENT_TO_PRINT
Nothing was printed as no document was failed. Fiscalization is working correctly and new documents can be issued
order-id
long
ID of an order.
order-item-id
long
ID of and order item.
take-away
boolean
Whether this item should be set as takeaway.
local
Print on device printer
remote
none
Dont print SK - change Not allowed in Slovakia. Returns an error.
characters
integer?
Width of print in characters
codepage
byte?
print-mini
boolean?
Print in mini mode or standart
print-logo
boolean?
1.243+
Print logo on receipt (if the logo is configured for any receipt print task in the register)
cut
boolean?
Is cut supported
append-lines
integer?
Number of lines appended to print
font
integer(0,1)?
Font type
An error that occured during Order processing but didn't cause the processing to fail. Might be interpreted as a warning to the user.
code
integer
Error code.
description
string
General description of a pass-through error in English.
localized-description
string
Localized description of a pass-through error in language specified in the request. If no language is specified in the request, defaults to POS' language.
SK Fiscal receipt file not found. Usually when order is successfully fiscalized, but the fiscal module didn't fill the path to the receipt file. The fiscal receipt was probably printed locally.
SK Fiscal receipt email not sent. Email with fiscal receipt couldn't have been sent.
print-png
field of response should contain the Base64 encoded receipt file instead (see next).
SK Fiscal receipt base64 creation failed. Could not encode the receipt file in Base64.
print-png
field in response is null
. In case this happens, the receipt file won't be deleted from POS (it can be retrieved manually - contact support).
SK Fiscal receipt possibly incomplete. Might happen when the fiscal module haven't finished writing/creating the receipt file even after extensive amount of time.
The electronic receipt sent to customer might have been incomplete. The receipt file won't be deleted from POS (it can be retrieved manually - contact support).
SK Fiscal receipt possibly old. When the receipt file we found was created more than 60 seconds prior to the processing. The electronic receipt sent to customer might not be the correct one. The receipt file won't be deleted from POS (it can be retrieved manually - contact support).
Can't obtain fiscal receipt printout. Fiscal receipts can be printed only locally (fiscal receipt is printed only on paper by fiscal the printer)
SK Fiscal print of the order failed. Order is fiscalized, but next actions on fiscal printer will fail. It is required to solve this by calling Print last document action
print
[string]
Contains the base64 representation of receipt.
1.243+ If the register has configured multiple receipt print tasks, there will be added print content for each of them. All configured filters and print configurations for the task will be applied. Fiscalized receipt content is added only if it is available, otherwise print won't be added and pass-through-errors
will contain error 100006
.
print-png
string?
1.242+, SK
Contains the base64 representation of a receipt returned by the fiscal module when print-type
: "remote"
or when print-type
: "email"
and email sending fails.
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/branches/:branchId/pos-actions
branchId
integer
cloudId
integer
Authorization
string
Bearer accessToken
array
Some of action request schema
id
long
Webhook ID
_cloudId
integer
Cloud ID (add link)
_warehouseId
long?
Warehouse ID (add link)
method
string
Webhook HTTP method to be requested when the entity is updated
payloadEntity
string
The name of an entity associated with the webhook
Can be one of the following: "STOCKLOG"
, "POINTSLOG"
, "PRODUCT"
,"ORDERBEAN"
, "RESERVATION"
payloadVersion
string
Version of the entity to be put into the webhook body
The only value currently supported is "V1"
i.e. field names will be compatible with VS/API1
versionDate
timestamp?
Version date in ISO or Timestamp format
GET
https://api.dotykacka.cz/v2/clouds/:cloudId/webhooks
Get a list of all configured webhooks.
cloudId
integer
ID of the cloud.
Authorization
string
Bearer accessToken
POST
https://api.dotykacka.cz/v2/clouds/:cloudId/webhooks
Register a new webhook.
cloudId
integer
ID of the cloud.
Authorization
string
Bearer accessToken
DELETE
https://api.dotykacka.cz/v2/clouds/:cloudId/webhooks/:webhookId
Delete a single webhook identified by its ID.
cloudId
integer
ID of the cloud.
webhookId
integer
ID of the webhook to delete.
Authorization
string
Bearer accessToken
To facilitate the transition from the original API v1, which we are gradually ending, we have prepared this starting point with the most important information for you.
Unification of naming conventions.
Improved sorting and filtering options
More entities made available
Improved authorization flow
POST /v2/clouds/:cloudId/branches/:branchId/pos-actions
POST /v2/clouds/:cloudId/branches/:branchId/pos-actions
POST /v2/clouds/:cloudId/branches/:branchId/pos-actions
POST /v2/clouds/:cloudId/branches/:branchId/pos-actions
POST /v2/clouds/:cloudId/branches/:branchId/pos-actions
POST /v2/clouds/:cloudId/branches/:branchId/pos-actions
The VAT is validated for tax-payers and if it is not one of the configured VAT rates for the Cloud, an error 400 Bad Request
is returned. See the to configure the VAT rates for the Cloud.
items
item[]
to be added to new order
items
item[]
to be added
customizations
?
Add product with customization
Dotypos 1.234+ required
split-items
boolean?
List of items to be moved to new order (id
should correspond items[].id
from .
print-config
pringConfig[]?
for print type
print-type
string?
(mode)
payment-method-id
long
items
item[]
to be added to new order
payment-method-id
long
items
item[]
to be added to new order
payment-method-id
long
print-config
pringConfig[]?
for print type
print-type
string?
(mode)
split-items
boolean?
List of items to be moved to new order (id
should correspond items[].id
from .
print-config
pringConfig[]?
for print type
print-type
string?
(mode)
split-items
boolean?
List of items to be moved to new order (id
should correspond items[].id
from .
print-config
pringConfig[]?
for print type
print-type
string?
(mode)
payment-method-id
long
payment-method-id
long
print-config
pringConfig[]?
for print type
print-type
string?
(mode)
status-transition
string
Transition to be performed. Check for list of supported transitions.
Returns list of data in
course-changes
[]
List of course changes for items in the given order.
take-away-changes
[]
List of takeaway changes.
Print task in format ESC/POS will contain in response (print-config is required)
SK - change Using remote
also requires print-email
field to be sent. Response will contain the base64 encoded representation of the receipt file (print-png
field). If, for some reason, receipt couldn't have been base64 encoded, the original file stays on POS (see ).
1.243+ If fiscal printout is not available for remote printing, print won't be added and pass-through-errors
will contain error 100006
.
Receipt will be sent to the email address specified in print-email.
SK - change Also email of Order's customer can be accepted. If email sending fails (see ), POS will try to fill at least base64 representation of receipt (as stated in the description of remote
print-type
above).
1.243+ If fiscal printout is not available, email won't be sent and pass-through-errors
will contain error 100006
.
pass-through-errors
[]
1.242+
List of pass-through errors encountered.
Are you working on a library for any language/framework? Let us know at , and we will mention you in this API reference.
Support email:
Note: currently without the support for and .
url
string
Webhook URL to be requested when the entity is updated. Validated by a .
The first step you need to take to gain access to the new API is to complete the authentication request. The procedure is described on the dedicated .
Are you working on a library for any language/framework? Let us know at , and we will mention you in this API reference.
If you are working on your own implementation of API access, our from the first version of the API may be useful.
Significantly improved (more complex operations in one step)
or write to us at , where we will be happy to help you.Missing an endpoint, not finding an answer to your question, or not understanding a new API mechanism? Try our
Do you have a really good questions to be answered? Ask us at and your question should be here instead of this placeholder text.
Please read the article where the corresponding endpoints for logging into API 2 are described.
is almost the same, for better flexibility we are using only one endpoint for all POS actions.