12 lines
265 B
Bash
12 lines
265 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
URL='http://127.0.0.1:8000'
|
||
|
|
|
||
|
|
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!"}'
|
||
|
|
|
||
|
|
|
||
|
|
|