Skip to content

Alerts (0.0.1)

Our alerting solution is centered around two concepts: events and channels. The occurrence of an event can be configured to trigger an alert. A channel describes the delivery method for an alert. Every configured alert consists of an event type / channel pair. This level of granularity allows alerting to be configured to your exact preference.

Download OpenAPI description
Languages
Servers
US Mailgun

https://api.mailgun.net/

EU Mailgun

https://api.eu.mailgun.net/

Operations

Inbox Placement

Inbox Placement testing allows you to see the likely deliverability of your email campaigns.

Operations

Email Preview

This API provides functionality to create and manage email preview tests, as well as create shareable links.

Operations

Spam Traps Monitoring

Our spam trap monitoring service surfaces how much of your email is being sent to known spam traps.

Operations
Operations
Operations

Domain Blocklist Monitoring

Blocklist Monitoring enables you to keep an eye on your reputation. Monitor your domains against our curated list of blocklist providers to make sure you aren't being blocked.

Operations

Google Postmaster Tools

This API provides access to Google Postmaster data.

Operations

Microsoft SNDS

This API provides access to Microsoft SNDS data.

Operations

Request

Returns a list of all address summary records for an account. Each record is for a single address's summary data.

Security
basicAuth
Path
ipstringrequired
Query
Skipintegerrequired

The record number to begin pagination with.

SortBystringrequired

Field name to sort by.

OrderBystringrequired

'asc' or 'desc' sorting.

Searchstringrequired

Value of the address to search

Headers
X-Mailgun-Account-Idstringrequired

The account id

curl -i -X GET \
  -u <username>:<password> \
  'https://api.mailgun.net/v1/reputationanalytics/snds/{ip}?Skip=0&SortBy=string&OrderBy=string&Search=string' \
  -H 'X-Mailgun-Account-Id: string'

Responses

A 200 response

Bodyapplication/json
summaryArray of objects(reputationanalytics_github.com-mailgun-reputationanalytics-models-address-AddressSummary)required
summary[].​domain_namestringrequired
summary[].​addressstringrequired
summary[].​reputationnumber(float)required
ip_countsobjectrequired
ip_counts.​property name*integer(int32)additional property
totalinteger(int32)required
Response
application/json
{ "summary": [ {} ] }
Operations