by-month resource endpoint
URL: /blogs/<id>/post-assets/@by-month/<id>.<format>
Supported Methods
| GET | Get all visible posts in the selected blog that have a publication date within the selected month, specified as a string of the form "YYYY-MM". |
Query String Arguments
- start-index
- Index of the first item to return. The first item in the list has index 1.
- max-results
- Maximum number of items to return in the list response.
Resource Type
This endpoint returns an object of type List<Post>.
- entries (array<Post>)
- The items within the selected range.
- totalResults (integer)
- The total number of items in the whole list of which this object is a chunk.
Client Library Methods for PHP
- Get all visible posts in the selected blog that have a publication date within the selected month, specified as a string of the form "YYYY-MM".
$tp->blogs->getPostAssetsByMonth(array( # Required Parameters "id" => $id, "month" => $month, # Optional Parameters "limit" => $limit, "offset" => $offset, ))