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 response

    {
        "status": true,
        "message": "string",
        "data": {
            "id": "string",
            "reference_id": "string",
            "order_status": "string",
            "test_order": true,
            "item_total": 0,
            "shipping_total": 0,
            "surcharge_total": 0,
            "order_total": 0,
            "payment_method": "string",
            "payment_status": "string",
            "point_earned": 0,
            "point_used": 0,
            "quantity_total": 0,
            "shipping_method": "string",
            "boost_production": true,
            "gift_message": null,
            "created_at": "string",
            "updated_at": "string",
            "rejected_at": null,
            "rejected_status": null,
            "cancelled_at": null,
            "address": {
                "name": "string",
                "company": null,
                "email": null,
                "phone": null,
                "street1": "string",
                "street2": null,
                "city": "string",
                "state": "string",
                "country": "string",
                "zip": "string"
            },
            "line_items": [
                {
                    "id": 0,
                    "item_id": "string",
                    "name": "string",
                    "sku": "string",
                    "style": "string",
                    "color": "string",
                    "size": "string",
                    "unit_price": 0,
                    "quantity": 0,
                    "point_earned": 0,
                    "price": 0,
                    "print_areas": {
                        "front": "string"
                    },
                    "preview_areas": {
                        "front": "string"
                    },
                    "shipping_price": 0
                }
            ],
            "shipments": [
                "string"
            ]
        }
    }
    Built with