docs: add quixzoom-auth-core product to AAMOS
- Product documentation in docs/products/ - Updated MEMORY.md with product info - quiXzoom Auth Core as AAMOS Identity product
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
# Webhook-exempel för alla 3 sajter
|
||||
|
||||
## quiXzoom väntelista
|
||||
```bash
|
||||
curl -X POST http://localhost:3456/api/mail/webhook/quixzoom \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{
|
||||
"email": "user@example.com",
|
||||
"phone": "+46701234567",
|
||||
"name": "Test User",
|
||||
"source": "quixzoom.com/waitlist",
|
||||
"metadata": {"country": "SE", "referral": "friend"}
|
||||
}'
|
||||
```
|
||||
|
||||
## Landvex kontaktformulär
|
||||
```bash
|
||||
curl -X POST http://localhost:3456/api/mail/webhook/landvex \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{
|
||||
"email": "contact@company.se",
|
||||
"name": "Erik Svensson",
|
||||
"company": "Acme AB",
|
||||
"phone": "070-123 45 67",
|
||||
"message": "Intresserad av VIMS-lösningen",
|
||||
"page_url": "landvex.com/contact",
|
||||
"interest": "VIMS"
|
||||
}'
|
||||
```
|
||||
|
||||
## AAMOS kontakt
|
||||
```bash
|
||||
curl -X POST http://localhost:3456/api/mail/webhook/aamos \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{
|
||||
"email": "info@company.se",
|
||||
"name": "Johan Berglund",
|
||||
"company": "Tech AB",
|
||||
"phone": "070-987 65 43",
|
||||
"message": "Vill veta mer om AMOS Vision",
|
||||
"page_url": "aamos.systems/products",
|
||||
"product_interest": "AMOS Vision"
|
||||
}'
|
||||
```
|
||||
Reference in New Issue
Block a user