QueryRequest
Required data for creating a query on the public data model.
Fields
| Field | Description |
|---|---|
|
limit
int
(required) |
Optional limit for the result. Default 100 Example value:250 |
|
offset
int
(required) |
Optional offset for the result. Default 0 Example value:500 |
|
query
string
(required) |
Actual query to execute Example value:"SELECT * FROM tm.paymentscenario" |
Example
1{
2 "limit": 250,
3 "offset": 500,
4 "query": "SELECT * FROM tm.paymentscenario"
5}