GET api/v1/reports/messages/statistics

Gets the statistics for standard messages sent on the account. The statistics will include time statistis showing how many messages where processed with the following time frames: 1. Less than 60 seconds 2. Less than 120 seconds 3. Less than 180 seconds 4. Less than 240 seconds 5. Greater than 240 seconds. Also statistics will also show statistics on message statuses. Both statistics will show the periods: 1. Today 2. Yesterday 3. Last 7 days 4. This Month 5. Last Month

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Message Statistics

ResponseOfStatistics
NameDescriptionTypeAdditional information
Error

Error

None.

ResponseData

ResponseDataOfStatistics

None.

Response Formats

application/json, text/json

Sample:
{
  "Error": {
    "ErrorCode": "sample string 1",
    "ErrorReason": "sample string 2"
  },
  "ResponseData": {
    "Identification": {
      "UserId": "sample string 1"
    },
    "Result": "sample string 1",
    "Detail": {
      "Status": [
        {
          "Name": "sample string 1",
          "Percentage": 2.1,
          "Status": "sample string 3"
        },
        {
          "Name": "sample string 1",
          "Percentage": 2.1,
          "Status": "sample string 3"
        }
      ],
      "Time": [
        {
          "Name": "sample string 1",
          "Periods": {
            "sample string 1": 2.1,
            "sample string 3": 4.1
          }
        },
        {
          "Name": "sample string 1",
          "Periods": {
            "sample string 1": 2.1,
            "sample string 3": 4.1
          }
        }
      ]
    }
  }
}