MANGOTEEPRINTS
    MANGOTEEPRINTS
    • Overview
    • Change log
    • Production Lines
      • List Production Lines
        GET
    • Catalog
      • Get Catalogs
        GET
      • Get Catalog Detail
        GET
    • Products
      • Get Products
        GET
      • Get Product Detail
        GET
      • Get Product Variations
        GET
    • Orders
      • Create Order
        POST
      • List Orders
        GET
      • Get Order Detail
        GET
      • Update Order
        PUT
      • Delete Order
        DELETE
      • Cancel Order
        POST
    • Webhooks
      • Create Webhook
        POST
      • List Webhooks
        GET
      • Get Webhook
        GET
      • Update Webhook
        PUT
      • Delete Webhook
        DELETE
    • 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

    Webhooks

    📮 Webhooks#

    Real-time notifications for order events via HTTP POST.

    📦 Event Payloads#

    order.status Event#

    Triggered when order status changes
    
      {
        "event": "order.status",
        "timestamp": "2024-01-15T10:30:00Z",
        "order_id": "ORD-550e8400-e29b-41d4",
        "order_fulfill_id": "SP-789012",
        "previous_status": "new_order",
        "current_status": "in_production",
        "production_line": "US1"
      }

    order.shipment Event#

    Triggered when tracking information updates
    {
      "event": "order.shipment",
      "timestamp": "2025-09-04T12:05:20.098642",
      "order_id": "wh1",
      "order_fulfill_id": "j2rpogze",
      "tracking_number": "940010010936113003118",
      "tracking_status": "delivered",
      "production_line": "TIKTOK",
      "carrier": "USPS"
    }

    ⚙️ Limits#

    Rate Limits
    100 calls/minute per user
    10 second timeout
    3 retry attempts (1min, 5min, 15min delays)
    Auto-disable after 10 consecutive failures
    Modified at 2025-09-04 05:07:42
    Previous
    Cancel Order
    Next
    Create Webhook
    Built with