GetIssuePages¶
This method returns a list of all pages for a specified Issue.
Request¶
GET https://api.uberflip.com/?Version=0.1&Method=GetIssuePages&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 (GetIssuePages ). |
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 the pages for. |
Width | (optional) The width of the thumbnail images to return. |
Height | (optional) The height of the thumbnail images 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>
<Page>
<number>0</number>
<thumb>
http://cdn.publishingdomain.com/api/files/aT0xjh09kyZDk%253D/-0.jpg
</thumb>
</Page>
<Page>
<number>1</number>
<thumb>
http://cdn.publishingdomain.com/api/files/7jxjh0945fZDk%253D/-0.jpg
</thumb>
</Page>
<Page>
<number>2</number>
<thumb>
http://cdn.publishingdomain.com/api/files/4df9jh09kyZD%253D/-0.jpg
</thumb>
</Page>
....
<Page>
<number>98</number>
<thumb>
http://cdn.publishingdomain.com/api/files/gfl90x0kyZDk%253D/-0.jpg
</thumb>
</Page>
</Response>