SearchTitlePages

This method searched all pages from all Issues within a specified Title for the specified query and returns a result set.

Request

GET https://api.uberflip.com/?Version=0.1&Method=SearchTitlePages&APIKey=xxxxxxx&Signature=xxxxxx&TitleId=1234&Query=test&ResponseType=XML
URL Parameters Description
Version The version of the API to call (0.1).
Method The method being called (SearchTitlePages).
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 search for pages in.
Query The search query.
ResponseType (optional) The response format (XML or JSON). Defaults to JSON.
Limit (optional) The maximum number of results to return.
Page (optional) The page number of results to return. Defaults to 1.

Examples

Sample response:

<Response>
    <Page>
            <page_fl>7</page_fl>
            <text>
                    ...lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
                    tempor incididunt ut labore et dolore magna aliqua nulla pariatur.
                    Excepteur sint occaecat cup...
            </text>
            <Issue>
                    <id>3579</id>
                    <name>Quartery Report - Q1 2011</name>
            </Issue>
    </Page>
    <Page>
            <page_fl>58</page_fl>
            <text>
                    ...nulla pariatur.Excepteur sint occaecat cup consectetur a
                    dipisicing elit, sed ...
            </text>
            <Issue>
                    <id>3581</id>
                    <name>Quartery Report - Q2 2011</name>
            </Issue>
    </Page>
    <Page>
            ...
    </Page>
</Response>