Kintec x Business Central

Small API. Clear proof. Less noise.

This UI is the operator-facing cut of the repo. It keeps only the BC lookup and posting flows that matter for discussion, and links the evidence and mapping docs behind them.

Current State

What is working right now in UAT.

Best Matched Sample

The strongest current Kintec to BC candidate used for end-to-end validation.

What To Show

  • Purchase invoice create, line add, and post are working in BC UAT.
  • Sales invoice from WIP is also working in BC UAT.
  • Exact Kintec job number to BC job mapping is still the main business gap.
  • The API surface below is the minimal one needed for demos and discussion.

Docs And Evidence

Purchase Invoice Flow

One endpoint for header, lines, and optional posting.

Sales Invoice From WIP

Reads WIP lines from BC and turns them into a sales invoice draft or posted invoice.

OpenAPI Surface

Keep the public conversation on these endpoints only: GET /api/overview, GET /api/vendors, GET /api/jobs, GET /api/wip, POST /api/purchase-invoice, POST /api/sales-invoice-from-wip. Full schema is available at /docs.

curl http://localhost:8000/api/overview curl "http://localhost:8000/api/jobs?status=Open&include_tasks=true" curl -X POST http://localhost:8000/api/purchase-invoice \ -H "Content-Type: application/json" \ -d @purchase.json curl -X POST http://localhost:8000/api/sales-invoice-from-wip \ -H "Content-Type: application/json" \ -d @sales.json