GetTitleIssues

This method returns the basic details for all Issues within a Title.

Request

GET https://api.uberflip.com/?Version=0.1&Method=GetTitleIssues&APIKey=xxxxxxx&Signature=xxxxxx&TitleId=12345&ResponseType=XML
URL Parameters Description
Version The version of the API to call (0.1).
Method The method being called (GetTitleIssues).
APIKey Your account’s API key.
Signature Your account’s API signature.
UserId (required for master/reseller accounts) The account identifier of the account to call the method on.
TitleId The identifier of the Title to return the Issues for.
ResponseType (optional) The response format (XML or JSON). Defaults to JSON.
Width (optional) The width of the thumbnail images to return.
Height (optional) The height of the thumbnail images to return.
Limit (optional) The maximum number of results to return.
Page (optional) The page number of results to return. Defaults to 1.
SortBy (optional) The field to sort the results by (id, name, created, modified, publish_date, or status).
SortDirection (optional) The direction to sort the results in (ASC or DESC).

If both Width and Height are specified, Width will take precedence. You cannot specificy both the width and height of the thumbnail image. It will always remain proportional.

For results to be sorted, both SortBy and SortDirection are required.

Examples

Sample response:

<Response>
    <Issue>
            <id>3579</id>
            <name>Quarterly Report - Q1 2011</name>
            <created>2009-12-05 10:35:16</created>
            <modified>2010-01-25 10:50:57</modified>
            <publish_date>2011-01-01 00:00:00</publish_date>
            <status>Active</status>
            <url>http://www.publishingdomain.com/i/3579-quarterly-report-q1-2011</url>
            <thumb>
                    http://cdn.publishingdomain.com/api/files/aT0xjh09kyZDk%253D/-0.jpg
            </thumb>
    </Issue>
    <Issue>
    ...
    </Issue>
    <Pagination>
            <TotalResults>55</TotalResults>
            <TotalPages>6</TotalPages>
            <Page>1</Page>
    </Pagination>
</Response>