MANGOTEEPRINTS
  1. Schemas
MANGOTEEPRINTS
  • Overview
  • Change log
  • Production Lines
    • List Production Lines
  • Catalog
    • Get Catalogs
    • Get Catalog Detail
  • Products
    • Get Products
    • Get Product Detail
    • Get Product Variations
  • Orders
    • Create Order
    • List Orders
    • Get Order Detail
    • Update Order
    • Delete Order
    • Cancel Order
  • Webhooks
    • Create Webhook
    • List Webhooks
    • Get Webhook
    • Update Webhook
    • Delete Webhook
  • Schemas
    • Schemas
      • ShippingMethod Copy
      • CancelOrderData
      • CancelOrderResponse
      • CatalogsListData
      • CreateOrderResponse
      • FacilityType
      • GenericWebhookRequest
      • GetOrderResponse
      • GetProductionLineResponse
      • HTTPValidationError
      • InsertSchema
      • ListOrdersResponse
      • ListProductionLinesResponse
      • OrderCancelSchema
      • OrderCreateSchema
      • OrderItemResponseSchema
      • OrderItemSchema
      • OrderListData
      • OrderResponseSchema
      • OrderStatus
      • OrderUpdateSchema
      • PaginationInfo
      • PrintFileSchema
      • ProductionLineListData
      • ProductionLineSchema
      • ProductsListData
      • PublicBaseResponse
      • PublicCatalogDetailResponse
      • PublicCatalogResponse
      • PublicCatalogsListResponse
      • PublicProductDetailResponse
      • PublicProductResponse
      • PublicProductsListResponse
      • PublicVariationResponse
      • PublicVariationsListResponse
      • ShippingMethod
      • SpeedType
      • TrackingEventSchema
      • UpdateOrderResponse
      • ValidationError
      • VariationsListData
      • WebhookCreate
      • WebhookEvent
      • WebhookListResponse
      • WebhookUpdate
      • WebhookResponse
      • WebhookResponse
  1. Schemas

ProductsListData(ProductsListData)

Data structure for products list response.

{
    "items": [
        {
            "attributes": {
                "care": "Machine wash cold",
                "material": "100% Cotton",
                "weight": "180gsm"
            },
            "base_price": 19.99,
            "catalog_id": "cat_apparel",
            "catalog_name": "Apparel",
            "currency": "USD",
            "description": "High quality 100% cotton t-shirt",
            "id": "prod_123456",
            "images": [
                "https://storage.mango.com/products/tshirt-front.jpg",
                "https://storage.mango.com/products/tshirt-back.jpg"
            ],
            "is_active": true,
            "max_order_quantity": 100,
            "min_order_quantity": 1,
            "name": "Premium Cotton T-Shirt",
            "sku": "TSH-001",
            "variations_count": 12
        }
    ],
    "pagination": {
        "limit": 20,
        "page": 1,
        "pages": 5,
        "total": 100
    }
}
Built with