List collections
GET/api/v1/collections
List collections you have access to. This includes collections you own, are an editor of, or a viewer of.
Responses
- 200
- 401
Successful response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
result
object[]
required
List of collections
name stringrequired
Collection name
search_queries numberrequired
Count of searches performed on the collection thus far
id stringrequired
Collection ID
created_at stringrequired
Timestamp when the collection was created
{
"result": [
{
"name": "string",
"search_queries": 0,
"id": "string",
"created_at": "string"
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
error
object
required
message stringrequired
Human readable error message
data nullable
Further details on the error
{
"error": {
"message": "string"
}
}
Loading...