# Reports (Legacy)

## List All Available Reports

> Retrieves a list of all reports available to the account.

```json
{"openapi":"3.1.0","info":{"title":"Brand API - Reports & Exports","version":"v14"},"servers":[{"url":"https://api.impact.com"}],"security":[{"basicAuth":[]}],"components":{"securitySchemes":{"basicAuth":{"type":"http","scheme":"basic","description":"Use your AccountSID as the username and AuthToken as the password."}},"schemas":{"Report":{"type":"object","properties":{"Name":{"type":"string","description":"The display name of the report."},"Id":{"type":"string","description":"The unique identifier or handle for the report."},"Category":{"type":"string","description":"The category the report belongs to."},"Description":{"type":"string","description":"A description of what the report contains."},"ApiAccessible":{"type":"boolean","description":"Whether this report can be run via the API."},"ApiRunUri":{"type":"string","format":"uri-reference","description":"The URI to run this report synchronously."},"DeferredApiRunUri":{"type":"string","format":"uri-reference","description":"The URI to schedule this report as an asynchronous export job."},"MetaDataUri":{"type":"string","format":"uri-reference","description":"The URI to retrieve this report's metadata."},"RunUri":{"type":"string","format":"uri-reference","description":"The URI to run this report in the impact.com platform."}}}}},"paths":{"/Advertisers/{AccountSID}/Reports":{"get":{"summary":"List All Available Reports","description":"Retrieves a list of all reports available to the account.","operationId":"listAllReports","tags":["Reports (Legacy)"],"parameters":[{"name":"AccountSID","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"A paginated list of report objects.","content":{"application/json":{"schema":{"type":"object","properties":{"Reports":{"type":"array","description":"The list of report objects.","items":{"$ref":"#/components/schemas/Report"}}}}}}}}}}}}
```

## Run a Report (Legacy)

> Runs a report and returns the records synchronously. This is a legacy endpoint with pagination limits. Use the \`ReportExport\` endpoint for more efficient exporting.

```json
{"openapi":"3.1.0","info":{"title":"Brand API - Reports & Exports","version":"v14"},"servers":[{"url":"https://api.impact.com"}],"security":[{"basicAuth":[]}],"components":{"securitySchemes":{"basicAuth":{"type":"http","scheme":"basic","description":"Use your AccountSID as the username and AuthToken as the password."}}},"paths":{"/Advertisers/{AccountSID}/Reports/{ReportId}":{"get":{"summary":"Run a Report (Legacy)","description":"Runs a report and returns the records synchronously. This is a legacy endpoint with pagination limits. Use the `ReportExport` endpoint for more efficient exporting.","operationId":"runReport","tags":["Reports (Legacy)"],"parameters":[{"name":"AccountSID","in":"path","required":true,"schema":{"type":"string"}},{"name":"ReportId","in":"path","required":true,"description":"The unique ID or handle for the report.","schema":{"type":"string"}},{"name":"SUBAID","in":"query","description":"Program ID. Required for most reports.","schema":{"type":"integer"}},{"name":"StartDate","in":"query","description":"Start date in YYYY-MM-DD format. Required for most reports.","schema":{"type":"string","format":"date"}},{"name":"EndDate","in":"query","description":"End date in YYYY-MM-DD format. Required for most reports.","schema":{"type":"string","format":"date"}},{"name":"RQueryIDx","in":"query","description":"For reports with multiple tables, specifies which table to return (0-indexed).","schema":{"type":"integer","default":0}}],"responses":{"200":{"description":"A paginated list of report records.","content":{"application/json":{"schema":{"type":"object","properties":{"Records":{"type":"array","description":"The records from the report.","items":{"type":"object","additionalProperties":true}}}}}}}}}}}}
```

## Retrieve Report Metadata

> Retrieves the dynamically generated documentation (metadata) for a specific report, including available filters and attributes.

```json
{"openapi":"3.1.0","info":{"title":"Brand API - Reports & Exports","version":"v14"},"servers":[{"url":"https://api.impact.com"}],"security":[{"basicAuth":[]}],"components":{"securitySchemes":{"basicAuth":{"type":"http","scheme":"basic","description":"Use your AccountSID as the username and AuthToken as the password."}},"schemas":{"ReportMetadata":{"type":"object","properties":{"Name":{"type":"string","description":"The display name of the report."},"Id":{"type":"string","description":"The unique identifier or handle for the report."},"Description":{"type":"string","description":"A description of what the report contains."},"Filters":{"type":"array","description":"The filter parameters available when running the report.","items":{"type":"object","properties":{"Name":{"type":"string","description":"The filter parameter name."},"DataType":{"type":"string","description":"The data type of the filter (e.g., String, Integer, Date)."},"Format":{"type":"string","description":"The expected format of the filter value, if applicable."}}}},"Attributes":{"type":"array","description":"The attributes (columns) returned by the report.","items":{"type":"object","properties":{"Name":{"type":"string","description":"The attribute name."},"DataType":{"type":"string","description":"The data type of the attribute."},"Description":{"type":"string","description":"A description of the attribute."}}}},"RunUri":{"type":"string","format":"uri-reference","description":"The URI to run this report."},"Uri":{"type":"string","format":"uri-reference","description":"The unique reference to this metadata object in the impact.com API."}}}}},"paths":{"/Advertisers/{AccountSID}/Reports/{ReportId}/MetaData":{"get":{"summary":"Retrieve Report Metadata","description":"Retrieves the dynamically generated documentation (metadata) for a specific report, including available filters and attributes.","operationId":"getReportMetadata","tags":["Reports (Legacy)"],"parameters":[{"name":"AccountSID","in":"path","required":true,"schema":{"type":"string"}},{"name":"ReportId","in":"path","required":true,"description":"The unique ID or handle of the report.","schema":{"type":"string"}}],"responses":{"200":{"description":"The metadata object for the requested report.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReportMetadata"}}}}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://integrations.impact.com/brand-api-reference/reference/report-export/reports-legacy.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
