Description
OpsAssist Data Bridge for WooCommerce is the companion plugin for the WC-Manager dashboard by Ops Assist. Some data your WooCommerce store holds (POS outlets, registers, digital-wallet balances, memberships) is not accessible through the standard WordPress REST API. This plugin adds a small set of authenticated, read-only endpoints that surface that data securely using your existing WordPress Application Password.
It also bundles two optional panels for the OpenPOS terminal — a Members lookup and a Stock Take counter — that only load when OpenPOS is installed. On stores without OpenPOS the plugin is purely the read-only data bridge plus the Stock Take settings page.
Once installed and activated, your WC-Manager dashboard auto-detects the plugin and starts syncing immediately.
REST endpoints
All endpoints require the caller to authenticate as a user with the manage_woocommerce capability.
GET /wp-json/woo-manager/v1/openpos-outlets— OpenPOS outlets (_op_warehouseposts)GET /wp-json/woo-manager/v1/openpos-registers— OpenPOS registers (_op_registerposts)GET /wp-json/woo-manager/v1/terawallet/balances— users with a non-zero TeraWallet balanceGET /wp-json/woo-manager/v1/terawallet/balance/{user_id}— a single user’s TeraWallet balanceGET /wp-json/woo-manager/v1/memberships/plans— WooCommerce Memberships plansGET /wp-json/woo-manager/v1/memberships/user/{user_id}— a user’s memberships
OpenPOS panels (optional)
- Members — cashiers can look up a customer at the register and see their active WooCommerce Memberships.
- Stock Take — run a category-by-category stock count at the register; counts auto-save and sync to the WC-Manager web app.
External service
The Stock Take panel communicates with the WC-Manager web app at https://wc-manager.com to load and save stock takes for your organisation. It authenticates with a per-organisation “plugin token” you paste into the plugin’s settings page (WooCommerce WC-Manager Stock Take). No data is sent until you configure that token and use the Stock Take panel. WC-Manager’s terms and privacy policy: https://wc-manager.com/terms and https://wc-manager.com/privacy.
The REST endpoints, the Members panel, and TeraWallet/membership reads make no external requests — they only respond to authenticated requests into your own site.
Privacy
This plugin does not collect, store, or transmit personal data on its own beyond the Stock Take sync described above, which only sends the stock-count data you create to your own WC-Manager account. See https://wc-manager.com/privacy.
Note on trademarks
WooCommerce is a registered trademark of Automattic Inc. This plugin is an independent companion plugin and is not affiliated with or endorsed by Automattic. OpenPOS and TeraWallet are products of their respective owners. WC-Manager is a separate product by Ops Assist.
Installation
- Upload the plugin folder to
/wp-content/plugins/or install via the WordPress plugin installer. - Activate the plugin through the Plugins menu in WordPress.
- Sign in to your WC-Manager dashboard — the bridge is detected automatically.
- (Optional) To use the Stock Take panel, go to WooCommerce WC-Manager Stock Take and paste your plugin connection token from WC-Manager.
FAQ
-
Does this plugin require a WC-Manager account?
-
The REST endpoints and the Members panel work for any authenticated user with the
manage_woocommercecapability. The Stock Take panel requires a WC-Manager account, since it syncs counts with the web app. -
Will this plugin slow down my store?
-
No. The REST endpoints only run when requested, and the wallet-balances result is cached for one minute. The OpenPOS panels only load inside the OpenPOS terminal.
-
How do I uninstall?
-
Deactivate and delete via WordPress Plugins. The only stored option is your Stock Take plugin token; no database tables are created.
Reviews
There are no reviews for this plugin.
Contributors & Developers
“OpsAssist Data Bridge for WooCommerce” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “OpsAssist Data Bridge for WooCommerce” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
1.4.3
- Added a custom-header authentication method (X-WC-Manager-Key / X-WC-Manager-Secret). Some sites run a Basic-Auth or security plugin that intercepts the standard Authorization header and rejects non-WooCommerce REST routes as a failed login. The custom headers bypass that cleanly, survive redirects, and keep credentials out of the URL/access logs. The dashboard uses them automatically when available.
1.4.2
- Fixed authentication on servers where the Authorization header is consumed by PHP (most Apache mod_php and many FastCGI setups). The endpoints now read the WooCommerce consumer key/secret from PHP_AUTH_USER/PHP_AUTH_PW and REDIRECT_HTTP_AUTHORIZATION as well, matching how WooCommerce’s own REST API authenticates. This resolves the dashboard reporting the plugin as “not detected” even when it is active.
1.4.1
- Hardened the plugin loader: if an upload is incomplete and an internal file is missing, the plugin now shows an admin notice and stops loading instead of triggering a fatal error. This prevents a partial update from taking a site down.
1.4.0
- The woo-manager/v1 endpoints now authenticate with your existing WooCommerce REST consumer key/secret — no WordPress Application Password needed. Store setup is just the API key plus this plugin.
- Added
/ping(authenticated handshake + companion-plugin detection),/media(image upload), and/cashiers(user name resolution) endpoints so the dashboard can do everything through this plugin with one credential.
1.3.0
- Restructured into a multi-folder plugin.
- Added WooCommerce Memberships REST endpoints (
/memberships/plans,/memberships/user/{id}). - Merged the standalone “WC-Manager: Members” and “WC-Manager: Stock Take” companion plugins into this plugin as optional OpenPOS terminal panels. They load only when OpenPOS is present.
- Added the Stock Take settings page (WooCommerce WC-Manager Stock Take). Existing tokens from the standalone Stock Take plugin are read automatically.
- Removed the self-hosted updater from the merged plugins — updates now come through WordPress.org.
1.2.0
- Renamed plugin to “OpsAssist Data Bridge for WooCommerce”.
- Function prefix renamed to
oadb_*. - No changes to the REST endpoints or response shapes.
1.1.0
- Added a one-minute cache around the wallet-balances query.
1.0.0
- Initial release.