REST API

REST API

Legacy Poppulo platform REST API

List Tags

Overview

NameDescription
HTTP MethodGET
URLhttps://api.newsweaver.com/v2/{account code}/tags
Query ParametersNo
Request representationN/A
Response representationTag List
Success Response Code200 Ok

Errors

  • 403 - Forbidden if API user doesn't have READ access to TAGS
  • Common errors (user/account authentication errors, API usage limit errors)

Example: GET https://api.newsweaver.com/v2/example-account/tags

<tags total="3" uri="https://api.newsweaver.com/v2/example-account/tags">
    <itemsPerPage>1000</itemsPerPage>
    <startIndex>0</startIndex>
    <totalResults>3</totalResults>
    <tag name="All Testers" uri="https://api.newsweaver.com/v2/example-account/tag/All%20Testers"/>
    <tag name="Self Subscribers" uri="https://api.newsweaver.com/v2/example-account/tag/Self%20Subscribers"/>
    <tag name="Update Profile" uri="https://api.newsweaver.com/v2/example-account/tag/Update%20Profile"/>
</tags>