List items in a store
GET/store/:storeId/items
List items in a store
Request
Path Parameters
storeId stringrequired
Responses
- 200
- 401
- 404
- 500
Items retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id string
title string
description string
link string
image string
store string
tags string[]
properties
object
property name* string
[
{
"id": "string",
"title": "string",
"description": "string",
"link": "string",
"image": "string",
"store": "string",
"tags": [
"string"
],
"properties": {}
}
]
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
error string
message string
{
"error": "string",
"message": "string"
}
Resource not found
- application/json
- Schema
- Example (from schema)
Schema
error string
message string
{
"error": "string",
"message": "string"
}
Internal server error
- application/json
- Schema
- Example (from schema)
Schema
error string
message string
{
"error": "string",
"message": "string"
}
Loading...