v1

latestOpenAPI 3.0.02026-08-0650184174.6 KB
Actions

Returns a list of actions alerts.

Returns a list of actions (alerts) that have been generated for your account.

get/actions

Query parameters

frominteger

Only include actions generated later than this timestamp. Format is UNIX time.

tointeger

Only include actions generated prior to this timestamp. Format is UNIX time.

limitinteger

Limits the number of returned results to the specified quantity.

offsetinteger

Offset for listing.

checkidsstring

Comma-separated list of check identifiers. Limit results to actions generated from these checks. Default: all checks.

useridsstring

Comma-separated list of user identifiers. Limit results to actions sent to these users. Default: all users.

statusstring

Comma-separated list of statuses. Limit results to actions with these statuses. Default: all statuses.

viastring

Comma-separated list of via mediums. Limit results to actions with these mediums. Default: all mediums.

Response

Successful HTTP Response

Example response

{
  "actions": {
    "alerts": [
      {
        "username": "John Doe",
        "via": "sms",
        "status": "delivered",
        "messageshort": "up",
        "messagefull": "PingdomAlert UP: MyCheck (example.com) is UP again at 2010-12-13 14:50:54. Downtime: 12m.",
        "sentto": "46-555555"
      }
    ]
  }
}
All 50 operations