Get collection details
GET/api/v1/collections/:collection-id
Get collection details.
Request
Path Parameters
collection-id stringrequired
Collection ID
Responses
- 200
- 401
- 403
- 404
Successful response
- application/json
- Schema
- Example (from schema)
Schema
result
object
required
name stringrequired
Collection name
created_at stringrequired
Timestamp when the collection was created
search_queries numberrequired
Count of searches performed on the collection thus far
{
"result": {
"name": "string",
"created_at": "string",
"search_queries": 0
}
}
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"
}
}
Forbidden
- 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"
}
}
Not found
- 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...