GetIssueDetails

This method returns the basic details for a specified Issue.

Request

GET https://api.uberflip.com/?Version=0.1&Method=GetIssueDetails&APIKey=xxxxxxx&Signature=xxxxxx&IssueId=3579&ResponseType=XML
URL Parameters Description
Version The version of the API to call (0.1).
Method The method being called (GetIssueDetails).
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.
IssueID The identifier of the Issue to return.
Width (optional) The width of the thumbnail image to return.
Height (optional) The height of the thumbnail image to return.

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.

Examples

Sample response:

<Response>
    <Issue>
        <id>3579</id>
        <name>Quarterly Report - Q1 2011</name>
        <title_id>12345</title_id>
        <publish_date>2010-06-30 00:00:00</publish_date>
        <created>2010-03-15 16:06:17</created>
        <modified>2010-07-22 11:58:15</modified>
        <status>Active</status>
        <num_of_pages>102</num_of_pages>
        <num_of_articles>20</num_of_articles>
        <url>http://www.publishingdomain.com/i/3579-quarterly-report-q1-2011</url>
        <pdf_url>
            http://cdn.publishingdomain.com/files/Y0MzE2NWNlODcwMTdmOGE0ZjliMDE3YzcyMzljNg%253D%253D
        </pdf_url>
        <thumb>
            http://cdn.publishingdomain.com/api/files/aT0xjh09kyZDk%253D/-0.jpg
        </thumb>
        <articles>
            <article>
                <id>27219</id>
                <title>Cover</title>
                <page>0</page>
            </article>
        </articles>
    </Issue>
</Response>