惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
月光博客
月光博客
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
U
Unit 42
腾讯CDC
爱范儿
爱范儿
J
Java Code Geeks
有赞技术团队
有赞技术团队
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
B
Blog
Stack Overflow Blog
Stack Overflow Blog
GbyAI
GbyAI
T
The Blog of Author Tim Ferriss
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why ERP integrations silently fail in production (and how...
Steffi · 2026-04-27 · via DEV Community

Most integration systems don’t break immediately. They fail silently over time by corrupting your data.

I learned this the hard way while building ERP integrations between retailers and suppliers. That retailer exchanged data with its suppliers: inventory updates, orders, shipping notices, and invoices. Each message came from different ERP systems with different formats and validation rules.

Now, as I’m preparing for a job interview in the field of ERP integration, I decided to approach this properly.

Integration Flow Design

No matter how different the systems were, every integration system I have ever seen has the similar pattern:

  1. Reception of HTTP Request: The retailer receives an order via HTTPS or SFTP.
  2. Decoding data: The payload is decoded and validated for syntactic correctness.
  3. Validation: The data is validated from a business perspective.
  4. Mapping: The external data is mapped to the internal model.
  5. Response: A response is returned with a status of 201 Created.

The design mistake I made

The biggest mistake I made at the beginning was mixing external formats with internal business logic of the platform. This is the point where most integration systems start to become unmaintainable.

The transport model defines the structure of the incoming payload as defined by the supplier, ERP system, or external API. The external payload can change at any time.

The internal data model belongs to the retailer’s platform, not to the supplier. It should remain as stable as possible. The internal data model is optimized for business logic.

Therefore, I decided to separate this data.

How I fixed it in Go

We declare a struct, which represents the incoming external payload.

type IncomingOrderRequest struct {
 MessageID  string        `json:"message_id"`
 SupplierID string        `json:"supplier_id"`
 Order      IncomingOrder `json:"order"`
} 

Enter fullscreen mode Exit fullscreen mode

The second struct represents the order itself:

type IncomingOrder struct {
 OrderID     string              `json:"order_id"`
 OrderDate   string              `json:"order_date"`
 Currency    string              `json:"currency"`
 TotalAmount float64             `json:"total_amount"`
 Lines       []IncomingOrderLine `json:"lines"`
}

Enter fullscreen mode Exit fullscreen mode

The third struct represents the order lines:

type IncomingOrderLine struct {
 SKU       string  `json:"sku"`
 Qty       int     `json:"qty"`
 UnitPrice float64 `json:"unit_price"`
}

Enter fullscreen mode Exit fullscreen mode

These structs together are related to the external transport model. The next two structs are related to the internal data model:

type InternalOrder struct {
 MessageID   string
 OrderID     string
 SupplierID  string
 OrderDate   string
 Currency    string
 TotalAmount float64
 Lines       []InternalOrderLine
}
type InternalOrderLine struct {
 SKU       string
 Qty       int
 UnitPrice float64
}

Enter fullscreen mode Exit fullscreen mode

The internal model does not depend on Json and on the ERP system.

Step 1: Reject bad requests early

With the following code snippet we make sure that our endpoint only accepts POST methods:

if r.Method != http.MethodPost {
    http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
    return
}

Enter fullscreen mode Exit fullscreen mode

Any other HTTP methods are rejected. This ensures the system never processes invalid transport data.

Step 2: Decode, but don’t trust the data

You should never trust external input - even if it looks clean:

err := json.NewDecoder(r.Body).Decode(&req)
if err != nil {
    http.Error(w, "Invalid JSON payload", http.StatusBadRequest) // 400
    return
}

Enter fullscreen mode Exit fullscreen mode

Step 3: Validate like your business depends on it

I am validating the data from a business point of view. This is where most production systems fail silently.

 if req.Order.OrderID == "" {
  return errors.New("missing order_id")
 }
 if req.Order.Currency == "" {
  return errors.New("missing currency")
 }
 if req.Order.TotalAmount <= 0 {
  return errors.New("total_amount must be > 0")
 }
 // Lines
 if len(req.Order.Lines) == 0 {
  return errors.New("order must contain at least one line")
 }

Enter fullscreen mode Exit fullscreen mode

If there is an error, it sends an HTTP response (402 Unprocessable entity) to the client.

err = validateRequest(req)
if err != nil {
    http.Error(w, err.Error(), http.StatusUnprocessableEntity)
    return
}

Enter fullscreen mode Exit fullscreen mode

Step 4: Map to something you control

I am translating the external payload to an internal domain model. This is the real architectural boundary that prevents my system from collapsing when external formats change.

func mapToInternal(req IncomingOrderRequest) InternalOrder {
    lines := make([]InternalOrderLine, 0, len(req.Order.Lines))

    for _, l := range req.Order.Lines {
        lines = append(lines, InternalOrderLine{
            SKU: l.SKU,
            Qty: l.Qty,
            UnitPrice: l.UnitPrice,
        })
    }
    return InternalOrder{
       MessageID: req.MessageID,
       OrderID: req.Order.OrderID,
       SupplierID: req.SupplierID,
       OrderDate: req.Order.OrderDate,
       Currency: req.Order.Currency,
       TotalAmount: req.Order.TotalAmount,
       Lines: lines,
       }
    }

Enter fullscreen mode Exit fullscreen mode

Step 5: Send back response

My REST API should return an HTTP response code that the operation has succeeded.

w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusCreated)

Enter fullscreen mode Exit fullscreen mode

Step 6: Create an order endpoint

We create an API endpoint at /orders, which handles the requests using the orderHandler function.

func main() {
    http.HandleFunc("/orders", orderHandler)
    fmt.Println("Server running on :8080")
    log.Fatal(http.ListenAndServe(":8080", nil))
}

Enter fullscreen mode Exit fullscreen mode

Step 7: Test your service end-to-end

With the REST API up and running, we can now test and see if it works.

go run main.go

Enter fullscreen mode Exit fullscreen mode

In a second Terminal session, we will use the curl request.

curl -X POST http://localhost:8080/orders \
     -H "Content-Type: application/json" \
     -d '{
            "message_id": "msg-1",
            "supplier_id": "supplier-1",
            "order": {
                        "order_id": "ord-1",
                        "order_date": "2026–02–01",
                        "currency": "EUR",
                        "total_amount": 100,
                        "lines": [
                          {
                            "sku": "SKU-1",
                            "qty": 1,
                            "unit_price": 100
                          }
                        ]
                      }
                    }'

Enter fullscreen mode Exit fullscreen mode

What happens if you don’t do this

If you don’t separate transport and domain models, your system won’t fail immediately — it will fail the moment something external changes. Good integration is not about moving data. Integration systems don’t fail because of code. They fail because they don’t control change. Once you separate transport and domain models, your system becomes resilient by design.

  • You can find the implementation of the code discussed in this article on GitHub. Feel free to clone it and extend it for your own integration use cases.

  • Subscribe to my Substack newsletter to get future articles and engineering breakdowns.

  • If you want to go deeper, I created a premium version of this project on Gumroad. Especially useful if you’re a developer who want to build or understand real-world integration services faster or if you are preparing for backend or ERP integration interviews.

Thank you for taking the time to read my articles about building real-world integration services in Go. Happy Coding!