Get all stores
GET/stores
Retrieve a list of all stores.
Request
Responses
- 200
- 401
- 403
- 500
A list of stores
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
_id uuid
name string
username string
bufferLocations uuid[]
callingStations uuid[]
properties object
createdAt date-time
updatedAt date-time
[
{
"_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"username": "string",
"bufferLocations": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"callingStations": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"properties": {},
"createdAt": "2024-12-03T13:25:45.048Z",
"updatedAt": "2024-12-03T13:25:45.048Z"
}
]
Unauthorized.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Authentication token not provided."
}
{
"message": "Authentication token not provided."
}
Forbidden.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Access to this resource is forbidden."
}
{
"message": "Access to this resource is forbidden."
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Internal Server Error. Please try again later."
}
{
"message": "Internal Server Error. Please try again later."
}
Loading...