FastPOD
    FastPOD
    • Getting Started
    • Orders
      • List Orders
        GET
      • Get Order
        GET
      • Create Order
        POST
      • Cancel Order
        POST
      • Estimate Order Price
        POST
      • Estimate Item Price
        POST
      • Update Order
        PUT
      • Update Status
        PUT
    • Catalog
      • List Catalogs
        GET
    • Webhook
      • List Webhooks
        GET
      • Subscribe
        POST
      • Unsubcribe
        DELETE
    • Schemas
      • Order Payload
      • Order response

    Order Payload

    {
        "reference_id": "string",
        "order_status": "string",
        "boost_production": true,
        "line_items": [
            {
                "item_id": "string",
                "sku": "string",
                "name": "string",
                "quantity": 0,
                "print_areas": {
                    "front": "string",
                    "back": "string"
                },
                "preview_areas": {
                    "front": "string",
                    "back": "string"
                }
            }
        ],
        "address": {
            "name": "string",
            "email": "string",
            "company": "string",
            "phone": "string",
            "street1": "string",
            "street2": "string",
            "city": "string",
            "state": "string",
            "country": "string",
            "zip": "string"
        },
        "shipping_method": 0
    }
    Built with