2026-02-14 17:49:01 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
2026-02-15 18:10:20 +01:00
|
|
|
# URL='http://127.0.0.1:8000'
|
2026-02-14 17:49:01 +01:00
|
|
|
|
|
|
|
|
curl -X POST $URL/api/notifications/preview-site-built \
|
|
|
|
|
-H "Authorization: Bearer $TOKEN" \
|
|
|
|
|
-H "Content-Type: application/json" \
|
|
|
|
|
-d '{"message": "Published to LIVE 💯🚀🎯 - site notification!"}'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|