The ReportExport
endpoint schedules a job to export reports asynchronously. It returns an object describing the initial job status, a URI to poll for status updates, and a URI to download the job result file. You can check the status of a job using the Jobs endpoint. Alternatively, enable a postback for the job completion event to be notified when your report data is ready to download.
Note
You need to add the field for which you require data in the query string to have the desired columns visible in the CSV.
For example, to see the Action Batch Date, you must add
SHOW_ACTION_BATCH_DATE=1
to the query string.
Parameters
SUBAID
required for most reports
SUBAID
required for most reportsA program Id. Further refine the report to only retrieve data from a specific program.
StartDate
required for most reports
StartDate
required for most reportsFrom what date and time the report should retrieve data. See ISO 8601.
EndDate
required for most reports
EndDate
required for most reportsTo what date and time the report should retrieve data. See ISO 8601.
ResultFormat
optional
ResultFormat
optionalWhich file format the report will be returned in.
View possible enum values | |
---|---|
CSV | Returns the report file in CSV format. |
JSON | Returns the report file in JSON format. |
XML | Returns the report file in XML format. |
Example Request
curl 'https://api.impact.com/Advertisers/<AccountSID>/ReportExport/<Id>' \
-X GET \
-u '<AccountSID>:<AuthToken>' \
-H 'Accept: application/json' \
Example Response
{ "Status": "QUEUED",
"QueuedUri": "/Advertisers/<AccountSID>/Jobs/d8807a9f-a5ee-4e3f-ad2b-3dfd19d1915f",
"ResultUri": "/Advertisers/<AccountSID>/Jobs/d8807a9f-a5ee-4e3f-ad2b-3dfd19d1915f/Download"
}