POST
/api/send
api_key | string | |
message | string | |
type | string |
| 200 | |
| 400 | |
| 401 | |
| 413 | |
| 429 | (10/minutes ) |
| 502 |
import requests
response = requests.post(
"https://relay.freedev.fr/api/send",
json={
"api_key": "pk_votre_cle",
"message": "Le job de backup s'est terminé avec succès.",
"type": "success",
},
)
print(response.status_code, response.json())
curl -X POST https://relay.freedev.fr/api/send \
-H "Content-Type: application/json" \
-d '{"api_key": "pk_votre_cle", "message": "Deploy terminé ✅", "type": "success"}'
await fetch("https://relay.freedev.fr/api/send", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
api_key: "pk_votre_cle",
message: "Deploy terminé ✅",
type: "success",
}),
});
info |
ℹ️ Info |
#5865f2
|
success |
✅ Success |
#2ecc71
|
warning |
⚠️ Warning |
#e67e22
|
alert |
🚨 Alert |
#e74c3c
|
error |
❌ Error |
#e74c3c
|
critical |
🔥 Critical |
#992d22
|
debug |
🐛 Debug |
#607d8b
|
test |
🧪 Test |
#1abc9c
|
build |
🏗️ Build |
#3498db
|
compile |
⚙️ Compile |
#3498db
|
deploy |
🚀 Deployment |
#9b59b6
|
release |
📦 Release |
#9b59b6
|
rollback |
↩️ Rollback |
#e67e22
|
server |
🖥️ Server |
#206694
|
startup |
🟢 Startup |
#2ecc71
|
shutdown |
🔴 Shutdown |
#e74c3c
|
restart |
🔄 Restart |
#e67e22
|
maintenance |
🛠️ Maintenance |
#e67e22
|
uptime |
⏱️ Uptime |
#2ecc71
|
cpu |
🧠 CPU |
#e67e22
|
ram |
💾 RAM |
#e67e22
|
disk |
💿 Disk |
#e67e22
|
temperature |
🌡️ Temperature |
#e74c3c
|
performance |
📊 Performance |
#3498db
|
health |
❤️ Health Check |
#2ecc71
|
network |
🌐 Network |
#3498db
|
connection |
🔗 Connection |
#3498db
|
timeout |
⌛ Timeout |
#e67e22
|
offline |
📴 Offline |
#e74c3c
|
online |
📡 Online |
#2ecc71
|
security |
🔒 Security |
#f1c40f
|
login |
🔑 Login |
#2ecc71
|
logout |
🚪 Logout |
#99aab5
|
authentication |
🪪 Authentication |
#f1c40f
|
permission |
⛔ Permission |
#e74c3c
|
attack |
⚔️ Attack Detected |
#992d22
|
firewall |
🧱 Firewall |
#c27c0e
|
database |
🗄️ Database |
#1abc9c
|
backup |
💽 Backup |
#2ecc71
|
restore |
♻️ Restore |
#3498db
|
migration |
🔀 Migration |
#9b59b6
|
api |
🔌 API |
#3498db
|
request |
📨 Request |
#5865f2
|
rate_limit |
🚦 Rate Limit |
#e67e22
|
webhook |
🪝 Webhook |
#9b59b6
|
user |
👤 User |
#979c9f
|
signup |
📝 New User |
#2ecc71
|
delete_user |
🗑️ User Deleted |
#e74c3c
|
payment |
💳 Payment |
#f1c40f
|
purchase |
🛒 Purchase |
#2ecc71
|
invoice |
🧾 Invoice |
#3498db
|
refund |
↩️ Refund |
#e67e22
|
ai |
🤖 AI |
#9b59b6
|
model |
🧠 Model |
#9b59b6
|
training |
📚 Training |
#3498db
|
prediction |
🔮 Prediction |
#1abc9c
|
trade |
📈 Trade |
#2ecc71
|
buy |
🟢 Buy |
#2ecc71
|
sell |
🔴 Sell |
#e74c3c
|
profit |
💰 Profit |
#2ecc71
|
loss |
📉 Loss |
#e74c3c
|
market |
📊 Market |
#3498db
|
bot |
🤖 Bot |
#9b59b6
|
bot_online |
🟢 Bot Online |
#2ecc71
|
bot_offline |
🔴 Bot Offline |
#e74c3c
|
command |
⌨️ Command |
#5865f2
|
file |
📄 File |
#3498db
|
upload |
⬆️ Upload |
#2ecc71
|
download |
⬇️ Download |
#3498db
|
storage |
📁 Storage |
#e67e22
|