Get Report Details

Use this request to retrieve the details for a specific report.

To retrieve the details for a specific report, use the following URL and the GET method:

{service_url}/api/v3/reports/{uuid}

Here, {service_url} is the URL of the sandbox or production environment, and {uuid} is the universally unique identifier of the report.

Example:

https://reporting-api.marketplace.taxamo.com/api/v3/reports/ABcasdaw%5B%5Dpdqweqwescasad

Details

EndpointMethod
/api/v3/reports/{uuid}GET

Input parameters

FieldDescription
uuidThe universally unique identifier of the report.

Output parameters

FieldTypePatternDescription
presigned-urlStringThe pre-signed URL for the report, if available.
started-timestampStringThe date and time when report processing started.
report-typeStringThe report type. Possible values are Audit and Tax-ID.
filenameStringThe name of the report file.
statusStringThe report status. Possible values are Queued, Done, Failed or Processing.
created-timestampString$date-timeThe date and time when the report was created. This is the time when report processing is complete.
error-messageStringIf report generation failed, the error message.
uuidString$uuidThe universally unique identifier of the report.
parametersStringSee Schedule Reports Input Parameters.
finished-timestampString and NullThe date and time when report processing finished.

Request example

curl --request GET \
     --url https://reporting-api.marketplace.taxamo.com/api/v3/reports/ABcasdaw%5B%5Dpdqweqwescasad \
     --header 'accept: application/json'

Response example

{
  "presigned-url": "string",
  "started-timestamp": "2024-11-05T14:15:16.730Z",
  "report-type": "Audit",
  "filename": "string",
  "status": "Queued",
  "created-timestamp": "2024-11-05T14:15:16.730Z",
  "error-message": "string",
  "uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "parameters": {
    "format": "csv",
    "product-classes": "SPDSSSSPDDDDPSSPSPDPSDSSDPDPPDSPDDSDSPDSSDDDSDSPPSSSDPDDSDSDPSDDP",
    "fx-source": "string",
    "tax-country-subdivision-code": "Ik-an",
    "end-month": "8986-75",
    "tax-country-code": "st",
    "currency-code": "hfv",
    "fx-date-type": "day",
    "tax-region-key": "XA",
    "start-month": "6332-63",
    "report-scope": "full",
    "transaction-type": "sale",
    "fx-date-field": "tax-timestamp"
  },
  "finished-timestamp": "2024-11-05T14:15:16.731Z"
}

Did this page help you?