Legacy Poppulo platform REST API
Name | Description |
---|---|
HTTP Method | GET |
URL | https://api.newsweaver.com/v2/{account code}/subscriber/{subscriber identifier}/tags https://api.newsweaver.com/v2/{account code}/subscriber/{subscriber email}/tags |
Query Parameters | N/A |
Request representation | N/A |
Response representation | Subscriber Tag List |
Success Response Code | 200 Ok |
403 - Forbidden
if API user doesn't have READ
access to GLOBAL_SUBSCRIBERS
and TAGS
404 - Not Found
if subscriber doesn't existExample: GET https://api.newsweaver.com/v2/sample-account/subscriber/joe.bloggs@example.com/tags
<subscriber_tags total="2" uri="https://api.newsweaver.com/v2/example-account/subscriber/joe.bloggs@example.com/tags">
<itemsPerPage>1000</itemsPerPage>
<startIndex>0</startIndex>
<totalResults>2</totalResults>
<subscriber_tag name="Computer Science" uri="https://api.newsweaver.com/v2/example-account/subscriber/1dc0ag2floc/tag/Computer%20Science">
<link
href="https://api.newsweaver.com/v2/example-account/subscriber/1dc0ag2floc"
rel="http://api-info.newsweaver.com/v2/rels/subscriber_tag.subscriber"
title="Subscriber (1dc0ag2floc)"/>
<link
href="https://api.newsweaver.com/v2/example-account/tag/Computer%20Science"
rel="http://api-info.newsweaver.com/v2/rels/subscriber_tag.tag"
title="Tag (Computer Science)"/>
</subscriber_tag>
<subscriber_tag name="Philosophy" uri="https://api.newsweaver.com/v2/example-account/subscriber/1dc0ag2floc/tag/Philosophy">
<link
href="https://api.newsweaver.com/v2/example-account/subscriber/1dc0ag2floc"
rel="http://api-info.newsweaver.com/v2/rels/subscriber_tag.subscriber"
title="Subscriber (1dc0ag2floc)"/>
<link
href="https://api.newsweaver.com/v2/example-account/tag/Philosophy"
rel="http://api-info.newsweaver.com/v2/rels/subscriber_tag.tag"
title="Tag (Philosophy)"/>
</subscriber_tag>
</subscriber_tags>