Retrieve a store by ID
GET/store/:storeId
Retrieve a store by ID
Request
Path Parameters
storeId stringrequired
Responses
- 200
- 401
- 404
- 500
Store retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Array [
]
id string
store_name string
description string
public boolean
created_at date-time
owner_id string
schema_values
object
property name*
string[]
string
schema_options
object
property name*
string[]
string
{
"id": "string",
"store_name": "string",
"description": "string",
"public": true,
"created_at": "2024-07-29T15:51:28.071Z",
"owner_id": "string",
"schema_values": {},
"schema_options": {}
}
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...