Connect Egixia with any ERP in your operation
Oracle, Microsoft Dynamics 365, Odoo, NetSuite, Siigo, World Office, CONTPAQi, TOTVS and 50+ more systems. Native connectors and a public REST API so your IT team can integrate on its own.
Strong in LATAM: Oracle · Dynamics · Odoo · Siigo · CONTPAQi · World Office · TOTVS
Egixia Core





0
ERPs supported
<0 sem.
Deployment time
0.9%
Connector uptime
0
Manual data entry
We connect with your entire tech stack
Over 50 native and open API integrations. Find your system:












We connect with legacy systems and custom developments via API.
Don't see your system? Let's talkA central hub for all your systems
Oracle NetSuite
REST API
CertifiedMicrosoft Dynamics 365
REST API
CertifiedOdoo
XML-RPC
CertifiedSAP Business One
Service Layer
AvailableSiigo
REST API
AvailableWorld Office
REST API
AvailableCONTPAQi
SDK
AvailableTOTVS Protheus
REST API
AvailableWorkday
REST API
In developmentSAP S/4HANA / ECC
OData
Specialized serviceIntegration flow: from ERP to dashboard
ERP Backend
Oracle · Dynamics · Odoo · Siigo
Egixia Connector
API Gateway + Middleware
Supplier Portal
Self-Service + Documents
Dashboard
KPIs + Reports + Alerts
Benefits of a native integration
Bidirectional Sync
What happens in the portal is reflected in your ERP (and vice versa). Supplier data, orders and invoices flow in real time.
Clean Master Data
Avoid duplicates and "garbage" in your supplier master. One single source of truth.
Automatic Reconciliation
Automatic Invoice vs. Order vs. Receipt matching without manual intervention.
Rapid Deployment
Pre-built connectors that reduce integration time from months to weeks.
Syncable data by ERP
| ERP | Version | Protocol | Key Data | Status | |
|---|---|---|---|---|---|
| Oracle NetSuite | Cloud ERP | REST API, SuiteScript | Suppliers, Purchase Orders, Invoices, Payments | Certified | |
| Microsoft Dynamics 365 | F&O / Business Central | REST API, OData | Suppliers, Contracts, Orders, Performance Analytics | Certified | |
| Odoo | v16+ | XML-RPC, REST API | Contacts, Products, RFQs, Invoices, Payments | Certified | |
| SAP Business One | v10+ (HANA / SQL) | Service Layer, DI API | Business Partners, Orders, Invoices, Journal Entries | Available | |
| Siigo | Cloud (Colombia) | REST API | Third parties, Vouchers, AP, Accounting movements | Available | |
| World Office | Cloud / On-premise | REST API, ODBC | Third parties, Documents, AP, Inventories | Available | |
| CONTPAQi | Comercial / Contabilidad | SDK, ADD | Suppliers (Mexico), CFDI, Journal entries, Payments | Available | |
| TOTVS Protheus | v12+ | REST API, Web Services | Suppliers (SA2), Orders, Contracts, NF-e | Available | |
| Workday | Financial Management | REST API, RaaS | Suppliers, Spend, POs, Settlements | In development | |
| SAP S/4HANA / ECC | ECC 6.0 / S/4HANA | OData, RFC, BAPI, IDocs | Suppliers (LFA1), Orders, Contracts — through our dedicated SAP integration service | Specialized service | View details → |
Egixia REST API: integrate from your own systems
A documented REST API with OAuth 2.0 and webhooks. Your IT team can consume Egixia without depending on us for every change.
Base URL
https://api.egixia.com/v1Rate limits
1,000 req/min · 10,000 req/hour
REST + JSON
OpenAPI 3.0 standard. Predictable endpoints, cursor pagination and typed errors.
OAuth 2.0
Long-lived server tokens with automatic refresh.
Webhooks
Real-time events: invoice approved, PO created, supplier onboarded.
Featured endpoints to get started today
Cover the flows most requested by procurement and finance teams.
/v1/suppliersCreate or update a supplier in the central master.
Request
curl -X POST https://api.egixia.com/v1/suppliers \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"tax_id": "900123456-7",
"legal_name": "Acme Logistics SAS",
"country": "CO",
"category": "Transportation"
}'Response
{
"id": "sup_01HZ8X9ABCDEF",
"tax_id": "900123456-7",
"legal_name": "Acme Logistics SAS",
"status": "pending_onboarding",
"created_at": "2026-04-22T14:32:00Z"
}/v1/invoices/{id}Fetch the status of an invoice in real time.
Request
curl https://api.egixia.com/v1/invoices/inv_01HZ8X9 \
-H "Authorization: Bearer $TOKEN"Response
{
"id": "inv_01HZ8X9",
"supplier_id": "sup_01HZ8X9ABCDEF",
"amount": 12450.75,
"currency": "USD",
"status": "approved",
"match_status": "3way_matched",
"due_date": "2026-05-12"
}/v1/purchase-ordersList purchase orders with filters and pagination.
Request
curl "https://api.egixia.com/v1/purchase-orders?status=approved&limit=20" \
-H "Authorization: Bearer $TOKEN"Response
{
"data": [
{
"id": "po_01HZ8X9",
"supplier_id": "sup_01HZ8X9ABCDEF",
"total": 48200.00,
"currency": "USD",
"status": "approved"
}
],
"next_cursor": "po_01HZ8YA"
}/v1/webhooksSubscribe to real-time events (invoice, PO, supplier).
Request
curl -X POST https://api.egixia.com/v1/webhooks \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"url": "https://erp.mycompany.com/hooks/egixia",
"events": ["invoice.approved", "purchase_order.created"]
}'Response
{
"id": "wh_01HZ8X9",
"url": "https://erp.mycompany.com/hooks/egixia",
"events": ["invoice.approved", "purchase_order.created"],
"secret": "whsec_********",
"active": true
}Three ways to implement: you choose the model
We don't lock you in. Your IT team can consume our API directly with official SDKs, or work side by side with us.
Egixia Turnkey
100% Egixia implementation
Who implements
Egixia team
Estimated time
4 weeks
Egixia support
Implementation + 24/7 support
- Discovery, configuration and go-live by our team
- UAT testing and training included
- 24/7 support after go-live
Hybrid Model
Co-creation with your team
Who implements
Egixia + Client IT
Estimated time
6 weeks
Egixia support
Weekly technical mentoring
- Egixia defines the integration architecture
- Your team configures endpoints and business rules
- Weekly mentoring with an Egixia architect
Self-Service (DIY)
Your IT team builds it
Who implements
Client internal team
Estimated time
You set the timeline
Egixia support
Documentation + L2 support
- Full access to API docs and official SDKs
- Free sandbox with sample data
- L2 support to unblock technical issues
Resources for developers
Everything your IT team needs to integrate Egixia with its own systems.
Security and compliance
Every connection is protected with enterprise-grade security standards.
TLS 1.2+
In-transit encryption for all communications.
OAuth 2.0
Secure token-based authentication.
AES-256
At-rest encryption for sensitive data.
SSO SAML
Enterprise Single Sign-On.
"We connected Oracle NetSuite and Siigo with Egixia in 3 weeks. Today our 1,200 suppliers sync invoices and check payment status in real time from a single portal."
CIO
Retail company — Mexico
Frequently asked questions about ERP integrations
Don't see your ERP on the list?
We build custom connectors or your team can use our REST API. Tell us your stack and we'll present an integration plan.
Request Integration Demo