REST API

REST API

Legacy Poppulo platform REST API

List Accounts

Overview

NameDescription
HTTP MethodGET
URLhttps://api.newsweaver.com/v2/
Query ParametersN/A
Request representationN/A
Response representationAccount List
Success Response Code200 Ok

Errors

  • Common errors (user/account authentication errors, API usage limit errors)

Other notes:

  • This is the top level listing for the API, and has the smallest error set. It is a useful test for authentication.
  • By visiting this URL in your browser, you can browse the read-only portions of the API

Example: GET https://api.newsweaver.com/v2/

<accounts total="1" uri="https://api.newsweaver.com/v2/">
    <itemsPerPage>1000</itemsPerPage>
    <startIndex>0</startIndex>
    <totalResults>1</totalResults>
    <account code="example-account" uri="https://api.newsweaver.com/v2/example-account">
        <name>Example Account</name>
    </account>
</accounts>