ediverse Explore the platform

Spotlight PEPPOL BIS Billing 3.0 The EU e-invoicing mandate is here — France Sept 2026, Belgium Jan 2026, Germany 2025.

REST-EDI

REST applied to EDI resources — resources, HTTP methods, 2xx/4xx/5xx codes.

Definition

Dominant pattern since 2010: each resource (Shipment, Order) has a canonical URL, uses GET/POST/PUT/PATCH/DELETE for CRUD. Spec standard: OpenAPI 3.x. Framework implementations: Express (Node), FastAPI (Python), Spring Boot (Java), .NET Core (C#). Simpler than SOAP/XML, more structured than GraphQL.

Origin

REST architecture theorised by Roy Fielding in his 2000 dissertation.

Example in context

GET /api/v1/orders/12345 → JSON detailing the PO with lines, status, partner.

Last updated: May 14, 2026