Home//
REST API Reference
/- Enqueue a new reporting data export job
Get export job status
List available datasets and attributes
Download completed export job data
Enqueue a new reporting d...
Security
bearerAuth
Intercom-Versionstring(intercom_version)
Intercom API version.
By default, it's equal to the version set in the app package.
Default:"2.14"
Enum:"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example:2.14
- The production API serverhttps://api.intercom.io/export/reporting_data/enqueue
- The european API serverhttps://api.eu.intercom.io/export/reporting_data/enqueue
- The australian API serverhttps://api.au.intercom.io/export/reporting_data/enqueue
curl -i -X POST \
https://api.intercom.io/export/reporting_data/enqueue \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Intercom-Version: 2.14' \
-d '{
"dataset_id": "conversation",
"attribute_ids": [
"conversation_id",
"conversation_started_at"
],
"start_time": 1717490000,
"end_time": 1717510000
}'Response
{ "job_identifier": "job1", "status": "pending", "download_url": "string", "download_expires_at": "string" }