REST API

REST API

Legacy Poppulo platform REST API

List Articles

Overview

NameDescription
HTTP MethodGET
URLhttps://api.newsweaver.com/v2/{account code}/issue/{issue id}/articles
Query ParametersN/A
Request representationN/A
Response representationArticle List
Success Response Code200 Ok

Errors

  • 403 - Forbidden if API user doesn't have READ access to ARTICLES
  • Common errors (user/account authentication errors, API usage limit errors)
<articles total="2" uri="https://api.newsweaver.com/v2/example-account/issue/123/articles">
    <itemsPerPage>1000</itemsPerPage>
    <startIndex>0</startIndex>
    <totalResults>2</totalResults>
    <article uri="https://api.newsweaver.com/v2/example-account/article/456">
        <status>APPROVED</status>
        <title>Example Approved Article</title>
    </article>
    <article uri="https://api.newsweaver.com/v2/example-account/article/789">
        <status>DRAFT</status>
        <title>Example Draft Article</title>
    </article>
</articles>