List all stores
GET/v1/stores/
Returns a list of stores.
Request
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
total_count integer
current_page integer
next urinullable
previous urinullable
results
object[]
id uuidrequired
name stringrequired
data
object
required
created date-timerequired
{
"total_count": 123,
"current_page": 1,
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2",
"results": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"data": {},
"created": "2024-01-02T07:21:22.181Z"
}
]
}
Loading...