Skip to main content
Status unavailable

DGII Electronic Invoicing in minutes

ERPly Pro is the multi-tenant PSFE for the Dominican Republic: XAdES-BES signing, DGII delivery, 10-year S3 Object Lock archive, and an Odoo integration in hours — not weeks.

Architecture at a glance

Your ERP submits the invoice, ERPly Pro signs and archives, DGII confirms.

Architecture: Odoo client → ERPly Pro PSFE → DGIIThe Odoo client posts REST invoices to ERPly Pro PSFE, which signs them with XAdES-BES, archives them in S3 with a 10-year WORM lock and delivers to DGII.OdooCustomer ERPERPly Pro PSFEXAdES-BES + multi-tenantIdempotency + retriesS3 WORM archive (10 years)HMAC-signed webhooksDGIIe-CF reception / TrackStatusREST + JWTSOAP/REST + XAdES

Your first invoice in under 10 minutes

POST /v1/invoices (sandbox)
curl -X POST https://sandbox.api.erply.pro/v1/invoices \
-H "Authorization: Bearer $ERPLYPRO_API_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: $(uuidgen)" \
-d '{
"tenantId": "demo-rnc-101000001",
"ecfType": "31",
"encf": "E310000000001",
"issueDate": "2026-05-01",
"buyer": { "rnc": "131000002", "name": "Cliente Demo S.R.L." },
"lines": [
{ "description": "Servicio de consultoría", "qty": 1, "unitPrice": 5000.00, "taxRate": 0.18 }
],
"subtotal": 5000.00,
"tax": 900.00,
"grandTotal": 5900.00
}'