Connect to Acumatica
Connect PlaidCloud to Acumatica’s contract-based REST API to pull reference and transactional data with no OData to hand-write, and post journal transactions, sales invoices, bills, and payments back. This guide covers the connection, the import step, and the post step.
Prerequisites
Section titled “Prerequisites”You need, in Acumatica:
- An instance base URL (for example
https://yourcompany.acumatica.com). - A company name (the exact company ID PlaidCloud logs into) and, if you use branches, the branch to post under.
- A dedicated username and password for PlaidCloud, with a role that has access to the entities you’ll read and the document screens you’ll post to.
- Contract-based REST API access enabled for that user (System > Integration Preferences, on by default in current Acumatica versions).
Create the Connection
Section titled “Create the Connection”-
Open Tools > Connections and click
New Connection. -
Choose Acumatica from the menu.
-
Fill in the fields:
Field Value Name A friendly name, e.g. Acumatica Prod.Instance Base URL Your instance URL, e.g. https://yourcompany.acumatica.com.Endpoint Name The contract endpoint name. Defaultunless a custom endpoint was published.Endpoint Version Optional, e.g. 25.200.001. Leave blank to use the endpoint’s latest published version.Company / Tenant The exact Acumatica company ID. Branch Optional. Leave blank to use the login user’s default branch. Username The PlaidCloud API user. Password The PlaidCloud API user’s password. -
Click
Create.
Smoke-Test the Connection
Section titled “Smoke-Test the Connection”-
Add an Import Acumatica Entity step to a workflow.
-
Set Acumatica Connection to your connection, Entity Type to
account, and Target Table to a scratch table. -
Run the step (see Running one step in a workflow).
A populated target table confirms the login, company, and branch are all correct. An error names the problem — bad credentials, wrong company, or a role missing REST API access.
Import Data
Section titled “Import Data”-
Add an Import Acumatica Entity step and set Acumatica Connection and Target Table.
-
Set Entity Type to the record you want. Master data and reference lists —
account,subaccount,ledger,financial_period,branch,currency,currency_rate,customer,vendor,stock_item,warehouse,employee,tax_category,project— and transactional entities —sales_invoice,bill,sales_order,shipment. -
Leave Active Only checked to pull active records only, for the entities that carry an Active flag.
-
Set Updated After to an ISO date or datetime to pull only rows changed since then (a request-side filter, not a persisted incremental cursor — you supply the cutoff each run).
-
Add Filters to bound a large pull — each is a
{field, operator, value}clause (eq,ne,gt,ge,lt,le,contains) or a{field, from, to}range, restricted per entity to the fields Acumatica can actually filter on server side. PlaidCloud rejects a filter field that entity doesn’t support rather than silently dropping it. -
Run the step and check the target table.
Post Documents
Section titled “Post Documents”The Acumatica Post step posts four document types through the same shared write pipeline every ERP post step uses: JournalTransaction, SalesInvoice, Bill, and Payment.
-
Build a header table — one row per document — with columns for
ref(your document identifier),doc_type(JournalTransaction,SalesInvoice,Bill, orPayment),posting_date,party_id(customer/vendor, where the doc type needs one),memo,due_date, andbranch_id. A single batch can mix document types — PlaidCloud partitions it bydoc_typebefore posting. -
Build a lines table — one or more rows per
ref— shaped to the document type:Doc Type Line Columns JournalTransaction account,subaccount,branch,debit,creditSalesInvoice item,qty,unit_price,amountBill account,amountPayment linked_txn_id,amount -
Add an Acumatica Post step, set Acumatica Connection, Environment, Header Table, Lines Table, and a Result Table.
-
Leave Validate Only checked and run the step — PlaidCloud builds and checks every document without a ledger claim and without posting anything.
-
Review the result table (one row per document:
ref,doc_type,natural_key,confirmation_id,status,message). Fix anyerrorrow and re-validate. -
Uncheck Validate Only and run again to post for real. Leave Continue On Error checked unless you want a batch to stop dead on its first failed document.
How Posting Works
Section titled “How Posting Works”Acumatica creates every document on Hold, then PlaidCloud calls the release action, which runs asynchronously (a 202 response, polled to completion, then a 204 confirms release). PlaidCloud only reports a document posted once release is confirmed — a document that lands but whose release never confirms stays quarantined rather than being recorded as posted, so a stuck Hold never silently passes as success.
Capability Limits — Read Before Posting Live
Section titled “Capability Limits — Read Before Posting Live”Related
Section titled “Related”- Acumatica REST Connector — field reference.
- Import Acumatica Entity
- Acumatica: Post Documents
- Review ERP Post History — the standing record of every Acumatica post attempt and its live state.
- Create and Manage a Connection