The report object holds general information information about a report as well as the Uri
needed to run the report. You can only list all reports.
Attributes
Name
string
Name
stringName of the report.
Id
string
Id
stringUnique impact.com Id for the report. Will only appear if ApiAccessible: true
.
Category
enum
Category
enumWhat kind of data the report retrieves. Reports created in the impact.com Data Lab and Forensiq reports cannot be retrieved or run via the Reports API.
View possible values | |
---|---|
Admin | Returns data about brand account user actions within your impact.com account. |
Beta | Returns data about a beta feature you are enrolled in. You will only see Beta reports for the beta features you are enrolled in. |
Compliance | Returns data about partner compliance. Your account needs special privileges to view these reports. |
Cross-Program | Returns data about cross-platform functionality or use (e.g., mobile and web at the same time). |
Custom | Returns data from customized reports. |
Finance | Returns data about the financial aspects of your account. |
Insights | Returns data sourced from impact.com's Optimize product. |
Listing | Returns aggregated sets of data, like partner contact information. |
Operations | Returns data on day-to-day occurrences, like which partners unsubscribed from mailing lists. |
Performance | Returns performance data, which can be aggregated in various ways. |
Description
string
Description
stringShort explanation of what data a specific report shows.
ApiAccessible
boolean
ApiAccessible
booleanWhether the report can be run via API.
ApiRunUri
string
ApiRunUri
stringIf ApiAccessible: true
, the Uri to run a specific report via API will appear. Will only appear if ApiAccessible: true
. In some cases a report can only be run using the Jobs endpoint (i.e. asynchronously). If this is true
for a report then the ApiRunUri
value and the DeferredApiRunUri
value will be the same.
DeferredApiRunUri
string
DeferredApiRunUri
stringIf ApiAccessible: true
, the Uri to run a specific report via API using the Jobs endpoint will appear. Will only appear if ApiAccessible: true
.
MetaDataUri
string
MetaDataUri
stringIf ApiAccessible: true
, the Uri to retrieve a specific report's documentation will appear. Will only appear if ApiAccessible: true
.
RunUri
string
RunUri
stringIf ApiAccessible: false
, then the report cannot be run via API. To run the report, you will need to append its RunUri
to the end of https://app.impact.com
.
{
"Name": "Performance by Media",
"Id": "agency_performance_by_media",
"Category": "Performance",
"Description": "Displays performance data for your managed media sources.",
"ApiAccessible": true,
"ApiRunUri": "/Agencies/<AccountSID>/Reports/agency_performance_by_media",
"MetaDataUri": "/Advertisers/<AccountSID>/Reports/agency_performance_by_media/MetaData"
}