Get credentials, swap them for a token, make your first read, make your first write, learn the error shape. That's the whole story — the rest is just more endpoints.
Standard OAuth2. Standard REST. Standard RFC 7807 errors. No bespoke SDK required.
Andromeda splits reads and writes across two APIs — a Queries API for GET requests, and a Commands API for POST, PUT and DELETE. A third service, the Identity server, issues OAuth2 tokens. All three are accessible on both a test and a production environment.
| Service | Test | 产品ion |
|---|---|---|
| Identity (OAuth2) | test-portal-identity.azurewebsites.net |
portal-identity.azurewebsites.net |
| Queries API (reads) | test-portal-queries-api.azurewebsites.net |
portal-queries-api.azurewebsites.net |
| Commands API (writes) | test-portal-api.azurewebsites.net |
portal-api.azurewebsites.net |
Every integration starts against test. Promotion to production is a config change, not a code change.
电邮 info@androtech.com or book a call. Tell us the use case — reporting, 菜单 automation, loyalty sync, etc. — and we'll issue a non-production organisation with test data.
You get a pair of credentials scoped to your organisation, plus a handful of test locations seeded with products, prices and a stream of synthetic 订单 so you have something realistic to read and write against.
Azure Key Vault, AWS Secrets Manager, 1Password — anything but source control. The secret never needs to appear in browser code; OAuth2 client_credentials is a server-to-server flow.
Standard OAuth2 client_credentials grant. The response is a short-lived JWT signed with our platform certificate — attach it as a Bearer header on every subsequent call.