Get all articles in a blog channel
GET {{baseUrl}}/.api/api.svc/blogchannels/:blogChannelId/blogarticles/view
This endpoint returns the full contents of all blog posts in a given blog channel, based on the channel's ID.
Request Params
| Key | Datatype | Required | Description |
| maxcount
| null | | Integer
The number of results to return per call.
Default: 10 |
| startindex
| null | | Integer
The index at which to start results for pagination. If more results are returned than the limit parameter allows, the offset can be used to return the next page of results in a second call.
For example, if the limit is set to 10, to return the second page of results, the offset should be 10, meaning the returned results will begin with the tenth result.
Default: 0 |
| orderby
| null | | String
The field by which to order the results.
Accepted values:
PublishedDateDesc
PublishedDateAsc
Default: PublishDateDesc
|
| includefuturepublished
| null | | Boolean
Dictates whether to include content scheduled to be published in the future.
Default: False |
HEADERS
| Key | Datatype | Required | Description |
| Accept
| null | | The type of response data to request.
Accepted values
application/json
application/xml
Default: application/xml
|
RESPONSES
status: ``