This documentation aims to provide all the information you need to work with the easyNag API.
To authenticate requests, include a parameter user_key
in the body of the request.
All authenticated endpoints are marked with a requires authentication
badge in the documentation below.
Your User-Key can be located within the easyNag App. The notification will be broadcasted to all of your devices.
Endpoints for sending push notifications
curl --request POST \
"https://api.easynag.com/v1/push/alert" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_key\": \"abcdef1234567890abcdef1234567\",
\"what\": \"SERVICE\",
\"type\": \"PROBLEM\",
\"state\": \"CRITICAL\",
\"hostname\": \"www.example.com\",
\"service\": \"fs_\\/\",
\"output\": \"CRITICAL - 95.00% in use\",
\"author\": \"Admin\",
\"comment\": \"Ack\",
\"date\": \"2022-06-02 20:00\",
\"instance\": \"MyMonitoring\"
}"
{
"response": "Notification accepted"
}
curl --request POST \
"https://api.easynag.com/v1/push/info" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_key\": \"abcdef1234567890abcdef1234567\",
\"message\": \"Reminder - Scheduled maintenance will take place today. Ticket-ID: 1234567.\",
\"silent\": false
}"
{
"response": "Notification accepted"
}