Retry Failed Report

Use this request to try a failed report again.

This request attempts to create and schedule a report again if the attempt in the Schedule Report request is unsuccessful.

Details

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

Request parameters

FieldDescription
uuidSpecify the UUID of the report you want to retry.

Response parameters

The following parameters are returned in the response:

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

Sample request

The following is an example of a valid request:

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

Sample response

The following is an example of a 200 successful response:

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