Query available sets
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
sets
array
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"sets"
],
"properties": {
"sets": {
"type": "array",
"items": {
"ref": "tools.ozone.set.defs#setView",
"type": "ref"
}
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
},
"sortBy": {
"enum": [
"name",
"createdAt",
"updatedAt"
],
"type": "string",
"default": "name"
},
"namePrefix": {
"type": "string"
},
"sortDirection": {
"enum": [
"asc",
"desc"
],
"type": "string",
"default": "asc",
"description": "Defaults to ascending order of name field."
}
}
},
"description": "Query available sets"
}