Returns aggregate delivery and open status for a project, broken down by current hour, current day, current week, current month with the previous of each as a comparable.

Request Fields

This method has no method-specific fields.

Request Example

{
  "api_key" : "PROJECT_API_KEY"
}

Response 200 OK

{
  "response": {
    "status": "ok",
    "uid": null,
    "message": "metrics"
  },
  "data": {
    "metrics": {
      "hour": {
        "delivered": {
          "current_percent": 97,
          "previous_percent": 99,
          "diff_percent": -2,
          "current_value": 4219,
          "previous_value": 4522
        },
        "opened": {
          "SAME_FORMAT_AS_DELIVERED"
        },
        "failed": {
          "SAME_FORMAT_AS_DELIVERED"
        },
        "rejected": {
          "SAME_FORMAT_AS_DELIVERED"
        },
        "created": {
          "SAME_FORMAT_AS_DELIVERED"
        },
        "queued": {
          "SAME_FORMAT_AS_DELIVERED"
        }
      },
      "date": {
        "SAME_FORMAT_AS_HOUR"
      },
      "week": {
        "SAME_FORMAT_AS_HOUR"
      },
      "month": {
        "SAME_FORMAT_AS_HOUR"
      }
    }
  }
}