Retrieve messages in a given date range. With paging.
Authentication: In order to use this method you must be authenticated using one of the supported methods.
Content will contain
GET /v2/Replies/GetByDate?startDate=2010-05-24&endDate=2017-05-25 HTTP/1.1 Host: api.messagenet.com.au Authorization: Bearer 12345 Accept: application/json Content-Type: application/json
And an example response
{
"Items": [
{
"MessageText": "Sample text",
"MessageId": "1",
"From": "0400555555",
"To": "0400555555",
"DateReceived": "2015-11-13T16:08:23+11:00"
}],
"PageNumber": 1,
"PageSize": 200,
"TotalRecords": 1,
"TotalPages": 1
}