Store

API endpoints for the marketplace store — listings, categories, reviews, orders, and pricing.

Store

MethodEndpointDescription
POST/storesCreate store
GET/storesList stores
GET/stores/{storeId}Get store
PUT/stores/{storeId}Update store
DELETE/stores/{storeId}Delete store

Categories

MethodEndpointDescription
POST/stores/{storeId}/categoriesCreate category
GET/stores/{storeId}/categoriesList categories
GET/stores/{storeId}/categories/{categoryId}Get category
PUT/stores/{storeId}/categories/{categoryId}Update category
DELETE/stores/{storeId}/categories/{categoryId}Delete category

Reviews

MethodEndpointDescription
POST/stores/{storeId}/reviewsCreate review
GET/stores/{storeId}/reviewsList reviews
GET/stores/{storeId}/reviews/{reviewId}Get review
PUT/stores/{storeId}/reviews/{reviewId}Update review
DELETE/stores/{storeId}/reviews/{reviewId}Delete review

Pricing Plans

MethodEndpointDescription
POST/pricing-plansCreate pricing plan
GET/pricing-plansList pricing plans
GET/pricing-plans/{planId}Get pricing plan
PUT/pricing-plans/{planId}Update pricing plan
DELETE/pricing-plans/{planId}Delete pricing plan

Orders

MethodEndpointDescription
POST/ordersCreate order
GET/ordersList orders
GET/orders/{orderId}Get order
GET/orders/number/{orderNumber}Get order by number
PUT/orders/{orderId}Update order
POST/orders/{orderId}/processProcess order
POST/orders/{orderId}/cancelCancel order