Retry Failed Report

Use this request to try a failed report again.

If the report that you schedule using the Schedule Report request fails, you can use its UUID to run it again.

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

https://reporting-api.marketplace.taxamo.com/api/v3/reports/{uuid}/retry

where {uuid} is the UUID of the report who's details you want to retrieve.

For example:

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

Details

DetailValue
Endpoint/api/v3/reports/{uuid}/retry
MethodPOST

Query Parameters

FieldDescription
uuidSpecify the UUID of the report who's details you want to retry.

Response Parameters

FieldTypeDescription
uuidStringThe UUID of the reporting query.
statusStringThe status of the report. It is always Queued.
messageStringThe message associated with the request.

Example

Request

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

Response

The following is an example 200 successful response:

{
  "uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "status": "Queued",
  "message": "string"
}