Get Report

Fetch a raw data export using its id returned by a Export Report request. For successful requests (HTTP 200) use the ReportingExportResult object to see the status of the generated report and the url where the report will be stored.

We recommend fetching a report 10 seconds after its creation and retrying every 10 seconds until a status is in Processing. A positively generated report will have Completed status.

See Report section for a sample code.

Get export status

get
Authorizations
AuthorizationstringRequired

Token should be in format "Bearer {access_token}"

Path parameters
idstringRequired

Export ID

Header parameters
Authorizationstring | nullableOptional

Authorization header

X-Impersonate-Userstring | nullableOptional

Impersonation header

Responses
get
/api/v1/report/exports/{id}

Sample request

Sample response body

ReportingExportResult {

description:

Export Result resource

id*

[...]

status*

string

Export status

Enum: [ Expired, Failed, Processing, Completed ]

url

string

Url of export result - with authorization (signature) and expire date

}

Last updated