Quickstart Guide
This guide will help you get started with AlertFleet in just a few steps.
1. Create an Account and Activate a Subscription Plan
To begin using AlertFleet:
- Sign up on alertfleet.com.
- Choose and activate a subscription plan from the pricing page.
2. Configure Your Trigger Source (E-mail / API)
Once your subscription is active, you need to configure your alert triggers.
Send Alerts via E-mail Trigger
To send alerts using an email trigger:
- Log in to alertfleet.com.
- Generate your source e-mail on the "Source E-mail Builder" page.
- Send an e-mail to the provided AlertFleet address with the required subject and body.
Example:
To:
send-XXXXXXXXXXXXXXXXXXXXXXXX@send.alertfleet.com
Subject:
Info
Body:
[SMS:+393333333331,+393333333332,+393333333333,+393333333334]
[WHATSAPP:+393333333331,+393333333332,+393333333333]
[EMAIL:receiver1@sample.com,receiver2@sample.com]
[WEBHOOK:POST|https%3A%2F%2Fsample.com%2Fhook1,GET|https%3A%2F%2Fsample.com%2Fhook2%3Fparam%3D1]
[MESSAGE: This is a sample notification message sent with AlertFleet]
warning
Make sure to configure the allowed sender e-mail on the Subscription page. Only emails sent from this address will be processed for generating alerts.
Send Alerts via API Trigger
To send alerts using the API:
- Log in to alertfleet.com.
- Generate or copy your API Key from the Subscription page.
- Perform an API request with the following details:
API Request Example:
Method: POST
URL:
https://api-source.alertfleet.com/api/v1/send
Headers:
Authorization: Api-Key {API_KEY}
Content-Type: application/json
Body (JSON):
{
"level": "info",
"message": "This is a sample notification's message sent with AlertFleet",
"sms": ["+393333333331", "+393333333332", "+393333333333", "+393333333334"],
"whatsapp": ["+393333333331", "+393333333332", "+393333333333"],
"email": ["receiver1@sample.com", "receiver2@sample.com"],
"webhook": [
{ "method": "POST", "url": "https://sample.com/hook1" },
{ "method": "GET", "url": "https://sample.com/hook?param=1" }
]
}