Some checks are pending
offline / test (push) Waiting to run
Fleet now spawns the real zappier and middleware processes. Metered timestamp/receipt/hash calls proxy to middleware when ZAPPIER_UPSTREAM is set. CS credits, sales per-customer pricing, and QuickBooks export are separate repos plugged into zappier-edge admin.
14 lines
550 B
Markdown
14 lines
550 B
Markdown
# zappier-sales-pricing
|
|
|
|
Sales-department API for **per-customer pricing** (tier + `multiplierOverride`). zappier-edge remains the rate-card store.
|
|
|
|
**Forgejo:** https://git.georgelambert.org/marchon/zappier-sales-pricing
|
|
**Catalog:** https://zapier.georgelambert.org/packages/zappier-sales-pricing/README.pdf
|
|
|
|
```bash
|
|
PORT=3012 node src/server.js
|
|
curl http://127.0.0.1:3012/quotes/cust_2
|
|
curl -X PUT http://127.0.0.1:3012/customers/cust_2/pricing \
|
|
-H 'content-type: application/json' \
|
|
-d '{"multiplierOverride":0.4,"tierId":"business"}'
|
|
```
|