Conversations: count by month

Authentication

LibraryH3lp supports cookie-based authentication. To learn more, you can read the details on authentication.

HTTP and HTTPS

Requests are served over HTTPS. To ensure data privacy, unencrypted HTTP is not supported.

URI

/2011-12-03/conversations/{YYYY}/{MM}

HTTP GET

Returns a JSON response containing the number of chats each day for the given month.

Optional Parameters

You may GET using the following parameter:

Parameter Description
timezone String containing a time zone to use for chats. Read more about time zones within .

Example

GET /2011-12-03/conversations/2012/03

[
  {
    "date": "2012-03-01",
    "count": 72
  },{
    "date": "2012-03-02",
    "count": 136
  },{
    ...
  },{
    "date": "2012-03-30",
    "count": 97
  },{
    "date": "2012-03-31",
    "count": 127
  }
]

HTTP POST

Not supported.

HTTP PUT

Not supported.

HTTP DELETE

Not supported.