WooCommerce
Paste an API keyPull order data from your WordPress store into document flows.
What you can do
- Look up a WooCommerce order — full order JSON lands in {{sX.data.*}}
Get your WooCommerce credentials
- 1In WP Admin go to WooCommerce → Settings → Advanced → REST API → Add key.
- 2Set Permissions to Read and generate.
- 3Copy the Consumer key (ck_…) and Consumer secret (cs_…).
Add the connection in ASHDOCS
- 1Open the Connections page in the flows console.
- 2Click “Connect with a key” and pick WooCommerce.
- 3Paste: Site URL, Consumer key, Consumer secret. ASHDOCS validates the credentials against WooCommerce before saving — a bad key is rejected with a plain-English reason, never stored.
Use it in a flow
In the flow builder, add the WooCommerce step, pick your connection, and fill the fields — values from earlier steps drop in as {{s1.field}} placeholders. Then hit Test this step in the step's panel to run it on its own before switching the flow on.
Troubleshooting
401 “cannot list resources”
The key's permission is set below Read, or your site blocks REST auth over query strings — ASHDOCS uses basic auth, ensure HTTPS.
404 on lookups
Check the Site URL has no trailing path and the order ID is the numeric WooCommerce ID.
FAQ
How do I trigger on new orders?
WooCommerce → Settings → Advanced → Webhooks → add Order created pointing at your flow's webhook URL, then template {{trigger.body.id}}.
Is anything written to my store?
No — the step is read-only.