Conversations: count by year

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}

HTTP GET

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

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/2011

[
  {
    "date": "2011-01-01",
    "count": 5
  },{
    "date": "2011-01-02",
    "count": 25
  },{
    ...
  },{
    "date": "2011-12-30",
    "count": 44
  },{
    "date":"2011-12-31",
    "count": 10
  }
]

HTTP POST

Not supported.

HTTP PUT

Not supported.

HTTP DELETE

Not supported.