List Deliverability Alerts
curl --request GET \
--url https://api.lemlist.com/api/deliverability/alerts \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.lemlist.com/api/deliverability/alerts"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.lemlist.com/api/deliverability/alerts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));require 'uri'
require 'net/http'
url = URI("https://api.lemlist.com/api/deliverability/alerts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.lemlist.com/api/deliverability/alerts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"alerts": [
{
"_id": "dac_A1B2C3D4E5F6G7H8I",
"teamId": "tea_ExampleAcmeTeamId",
"createdBy": "usr_ExampleAcmeUserId",
"createdAt": "2026-04-12T09:30:00.000Z",
"updatedAt": "2026-04-12T09:30:00.000Z",
"widget": "outreach",
"metric": "bounceRate",
"severity": "critical",
"scope": "mailbox",
"scopeEntities": [
"usr_ExampleAcmeUserId|john@example.com|usm_ExampleMailboxId"
],
"threshold": 5,
"comparisonOperator": "above",
"periodDays": 1,
"periodMode": "rolling",
"channelConfig": {
"inapp": {
"enabled": true
},
"email": {
"enabled": true,
"addresses": [
"alerts@example.com"
]
},
"webhook": {
"enabled": false
},
"slack": {
"enabled": false
}
},
"enabled": true,
"lastCheckedAt": "2026-05-07T07:00:00.000Z",
"lastTriggeredAt": "2026-05-06T18:42:11.000Z",
"recheckDelayHours": 12
}
],
"total": 1
}Deliverability alerts
List Deliverability Alerts
Lists all deliverability alert configurations for your team.
GET
/
deliverability
/
alerts
List Deliverability Alerts
curl --request GET \
--url https://api.lemlist.com/api/deliverability/alerts \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.lemlist.com/api/deliverability/alerts"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.lemlist.com/api/deliverability/alerts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));require 'uri'
require 'net/http'
url = URI("https://api.lemlist.com/api/deliverability/alerts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.lemlist.com/api/deliverability/alerts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"alerts": [
{
"_id": "dac_A1B2C3D4E5F6G7H8I",
"teamId": "tea_ExampleAcmeTeamId",
"createdBy": "usr_ExampleAcmeUserId",
"createdAt": "2026-04-12T09:30:00.000Z",
"updatedAt": "2026-04-12T09:30:00.000Z",
"widget": "outreach",
"metric": "bounceRate",
"severity": "critical",
"scope": "mailbox",
"scopeEntities": [
"usr_ExampleAcmeUserId|john@example.com|usm_ExampleMailboxId"
],
"threshold": 5,
"comparisonOperator": "above",
"periodDays": 1,
"periodMode": "rolling",
"channelConfig": {
"inapp": {
"enabled": true
},
"email": {
"enabled": true,
"addresses": [
"alerts@example.com"
]
},
"webhook": {
"enabled": false
},
"slack": {
"enabled": false
}
},
"enabled": true,
"lastCheckedAt": "2026-05-07T07:00:00.000Z",
"lastTriggeredAt": "2026-05-06T18:42:11.000Z",
"recheckDelayHours": 12
}
],
"total": 1
}Was this page helpful?
⌘I