{
  "openapi": "3.0.3",
  "info": {
    "title": "Shenghongda Hygiene B2B API & WebMCP Interface",
    "version": "1.0.0",
    "description": "Programmatic B2B interaction API and WebMCP endpoint specification for Quanzhou Shenghongda Hygiene Products Co., Ltd."
  },
  "servers": [
    {
      "url": "https://www.shenghongdadiapers.com"
    }
  ],
  "paths": {
    "/api/sample-request": {
      "post": {
        "operationId": "orderAdultDiaperSampleKit",
        "summary": "Request curated physical adult diaper sample kit",
        "description": "Submit corporate delivery details to dispatch samples with certified TDS via DHL Express.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "fullname": {"type": "string", "description": "Full name of recipient"},
                  "email": {"type": "string", "format": "email", "description": "Corporate email address"},
                  "company": {"type": "string", "description": "Company name"},
                  "country": {"type": "string", "description": "Destination country"},
                  "product_interest": {"type": "string", "description": "Target diaper or underpad product"}
                },
                "required": ["fullname", "email", "country"]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Sample kit request registered successfully."
          }
        }
      }
    },
    "/api/rfq": {
      "post": {
        "operationId": "requestB2BQuotation",
        "summary": "Submit B2B quotation inquiry",
        "description": "Submit volume and container packing requirements for formal proforma invoice.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "fullname": {"type": "string"},
                  "email": {"type": "string", "format": "email"},
                  "product_interest": {"type": "string"},
                  "estimated_quantity": {"type": "string"},
                  "message": {"type": "string"}
                },
                "required": ["fullname", "email", "product_interest"]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Quotation inquiry received."
          }
        }
      }
    }
  }
}
