MANGOTEEPRINTS
  1. Production Lines
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
  1. Production Lines

List Production Lines

GET
https://v3.mangoteeprints.com/api/public/v1/production-lines
Last modified:2025-08-22 08:07:39
List all available production lines.
Required permission: read:production_lines
Returns list of production lines with their features and supported options.

Request

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://v3.mangoteeprints.com/api/public/v1/production-lines?is_active&page&limit' \
--header 'X-API-Key;'

Responses

🟢200Successful Response
application/json
Body

Example
{
    "code": "SUCCESS",
    "data": {
        "items": [
            {
                "description": "TikTok Shop production line",
                "id": "TIKTOK",
                "is_active": true,
                "name": "TIKTOK",
                "requires_vnemb_fields": false,
                "supported_facilities": [
                    "TX",
                    "SJ",
                    "VA"
                ],
                "supported_shipping_methods": [
                    "standard",
                    "economy"
                ],
                "supports_label_url": true,
                "supports_speed_type": false
            },
            {
                "description": "Fast US production line",
                "id": "FASTUS",
                "is_active": true,
                "name": "FASTUS",
                "requires_vnemb_fields": false,
                "supported_facilities": [
                    "AUTO"
                ],
                "supported_shipping_methods": [
                    "standard",
                    "priority",
                    "express"
                ],
                "supports_label_url": true,
                "supports_speed_type": true
            }
        ],
        "pagination": {
            "limit": 10,
            "page": 1,
            "pages": 1,
            "total": 5
        }
    },
    "message": "Production lines retrieved successfully",
    "request_id": "550e8400-e29b-41d4-a716-446655440000",
    "status": true,
    "timestamp": "2024-01-15T10:30:00Z"
}
🟠422Validation Error
Modified at 2025-08-22 08:07:39
Previous
Change log
Next
Get Catalogs
Built with