published resource endpoint
URL: /blogs/<id>/comments/@published.<format>
Supported Methods
| GET | Return a pageable list of published comments associated with the selected blog |
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<Comment>.
- entries (array<Comment>)
- 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
- Return a pageable list of published comments associated with the selected blog
$tp->blogs->getPublishedComments(array( # Required Parameters "id" => $id, # Optional Parameters "limit" => $limit, "offset" => $offset, ))
Filter Endpoints
The following endpoints provide filtered views of this collection:
| recent | Return the fifty most recent published comments associated with the selected blog |