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.
- Lists monitored IP addresses
Register an IP address
Get the IP address
Update the IP address
Removes IP from monitoring
Lists monitored IP addres...
Alerts (0.0.1)
Download OpenAPI description
Languages
Servers
US Mailgun
https://api.mailgun.net/
EU Mailgun
https://api.eu.mailgun.net/
- US Mailgun
https://api.mailgun.net/v1/inboxready/ip_addresses
- EU Mailgun
https://api.eu.mailgun.net/v1/inboxready/ip_addresses
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
-u <username>:<password> \
'https://api.mailgun.net/v1/inboxready/ip_addresses?limit=100'Response
application/json
{ "items": [ { … } ] }
- US Mailgun
https://api.mailgun.net/v1/inboxready/ip_addresses
- EU Mailgun
https://api.eu.mailgun.net/v1/inboxready/ip_addresses
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
-u <username>:<password> \
https://api.mailgun.net/v1/inboxready/ip_addresses \
-H 'Content-Type: application/json' \
-d '{
"UpdateIPAddressReq": {}
}'Response
application/json
[ { "ip": "127.0.0.1", "ippool": "swimming", "description": "this is a description", "state": "listed", "listed": [ … ] } ]
- US Mailgun
https://api.mailgun.net/v1/inboxready/ip_addresses/{ip}
- EU Mailgun
https://api.eu.mailgun.net/v1/inboxready/ip_addresses/{ip}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
-u <username>:<password> \
'https://api.mailgun.net/v1/inboxready/ip_addresses/{ip}'Response
application/json
[ { "ip": "127.0.0.1", "ippool": "swimming", "description": "this is a description", "state": "listed", "listed": [ … ] } ]