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
page
integer
limit
integer
filter
string
sort
string
Headers
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
Bearer accessToken
[
{
<Cloud response schema>
},
...
]
Get cloud
GET
https://api.dotykacka.cz/v2/clouds/:cloudid
Path Parameters
cloudid*
string
Headers
If-None-Match
string
ETag to return results only if changed.
Authorization*
string
{
<Cloud response schema>
}
Last updated
Was this helpful?