GLinBoy / MessageCentral

A service to handle messages (email, SMS, notification) for microservice environment
Apache License 2.0
5 stars 0 forks source link

Add a dashboard API #615

Open GLinBoy opened 2 years ago

GLinBoy commented 2 years ago
GLinBoy commented 2 years ago

For the response of the API:

{
  "last_30_day": [
    {
      "date": "2022-06-28",
      "email": {
        "success": 30,
        "failed": 0
      },
      "sms": {
        "success": 30,
        "failed": 0
      },
      "notification": {
        "success": 30,
        "failed": 0
      }
    },
    {
      "date": "2022-06-27",
      "email": {
        "success": 30,
        "failed": 0
      },
      "sms": {
        "success": 30,
        "failed": 0
      },
      "notification": {
        "success": 30,
        "failed": 0
      }
    }
  ]
}