API
User Manual
  • Introduction to API v2
  • Guides
    • Getting started
    • Authorization
    • Delivery Notes Integrations
  • API Reference
    • General
      • Data types
        • Validation
        • Prices
      • Schema
      • Flags
      • ETags
        • ETag examples
      • Filtering
      • Sorting
      • Paging
      • Methods
      • HTTP Status Codes
    • Enums
      • Payment methods
      • Units
      • Order status
  • Entity
    • Attendance
    • Branch
    • Category
    • Cloud
    • Course
    • Customer
    • Customer Account
    • Customer Account Log
    • Daily Menu
    • Daily Menu Product
    • Delivery Note
    • Discount group
    • EET subject
    • Employee
    • Money log
    • Order
    • Order item
    • Product
    • Product Customization
    • Product Ingredient
    • Reservation
    • Stock Packaging
    • Supplier
    • Table
    • Tag
    • Tax (VAT rates)
    • Warehouse
    • Warehouse Branch
  • Others
    • Reports
      • Base Sales Report
    • POS actions
    • Release notes
    • Breaking changes
    • Webhook
    • Third-party libraries
  • Migration
    • Migrating from API v1
    • API v1 Services
      • Branch Service
      • Category Service
      • Customer Service
      • Employee Service
      • OAuth2 Login Service
      • POS action service
      • Product Service
      • Reservation Service
      • Sale Service
      • Stock Service
      • Supplier Service
      • Tableseat Service
      • Tag Service
      • Warehouse Service
Powered by GitBook
On this page
  • Cloud schema
  • Get list of clouds
  • Get cloud

Was this helpful?

Export as PDF
  1. Entity

Cloud

Cloud schema

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

Cloud response

{
    "1ClickId": <integer>,
    "_companyId": <long>,
    "country": <string>,
    "deleted": <boolean>,
    "expired": <boolean>,
    "id": <integer>,
    "name": <string>,
    "restricted": <boolean>,
    "segment": <string>
}

Get list of clouds

GET https://api.dotykacka.cz/v2/clouds

Query Parameters

Name
Type
Description

page

integer

limit

integer

filter

string

sort

string

Headers

Name
Type
Description

If-None-Match

string

ETag to return results only if changed.

Authorization*

string

Bearer accessToken

[
    {
        <Cloud response schema>
    },
    ...
]
{
    // Response
}
{
    // Response
}

Get cloud

GET https://api.dotykacka.cz/v2/clouds/:cloudid

Path Parameters

Name
Type
Description

cloudid*

string

Headers

Name
Type
Description

If-None-Match

string

ETag to return results only if changed.

Authorization*

string

{
    <Cloud response schema>
}
{
    // Response
}
{
    // Response
}

PreviousCategoryNextCourse

Last updated 3 years ago

Was this helpful?