GetAccountIssues¶
This method returns a list of all Issues within an account.
Request¶
GET https://api.uberflip.com/?Version=0.1&Method=GetAccountIssues&APIKey=xxxxxxx&Signature=xxxxxx&ResponseType=XML
| URL Parameters | Description |
|---|---|
| Version | The version of the API to call (0.1). |
| Method | The method being called (GetAccountIssues). |
| 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. |
| 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. |
| 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). |
Examples¶
Sample response:
<Response>
<Issue>
<id>3579</id>
<name>Quartery Report - Q1 2011</name>
<created>2010-12-05 10:35:16</created>
<modified>2010-12-27 19:47:20</modified>
<publish_date>2011-01-01 00:00:00</publish_date>
<status>Active</status>
</Issue>
<Issue>
...
</Issue>
<Pagination>
<TotalResults>74</TotalResults>
<TotalPages>8</TotalPages>
<Page>1</Page>
</Pagination>
</Response>