API Documentation

Get Methods » GetTitles

This method returns the basic details for all Titles within an account

Required paramaters: standard

Optional paramaters: standard, Limit, Page, SortBy, SortDirection

For master account Key/Signature pair, the paramater UserId is also required.

Example Response (XML)

<Title>
	<id>12345</id>
	<title>ACME Reporter</title>
	<created>2009-08-24 18:49:18</created>
	<modified>2010-12-19 18:51:52</modified>
	<language>en</language>
	<status>Active</status>
	<description>The ACME Reporter is a collection of reports written by...</description>
	<keywords>reports, finance, stocks, market</keywords>
	<Domain>
		<www>http://www.publishingdomain.com/</www>
		<files>http://cdn.publishingdomain.com</files>
	</Domain>
</Title>
<Title>

	...	
	
</Title>
<Pagination>
	<TotalResults>33</TotalResults>
	<TotalPages>4</TotalPages>
	<Page>1</Page>
</Pagination>

Sorting Options

SortBy possible values:

id
title
created
modified
language
status

SortDirection possible values:

ASC
DESC

Definitions

Domain values:
- www is your publishing domain,
- files is your CDN (content distribution network) domain

Example usage

You can link to the most recent Issue within a Title by simply directing users to the Title link, which consists of the www value followed by "title/" followed by the id value.

i.e. http://www.publishingdomain.com/title/12345