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
Detail | Value |
---|---|
Endpoint | /api/v3/reports/{uuid}/retry |
Method | POST |
Query Parameters
Field | Description |
---|---|
uuid | Specify the UUID of the report who's details you want to retry. |
Response Parameters
Field | Type | Description |
---|---|---|
uuid | String | The UUID of the reporting query. |
status | String | The status of the report. It is always Queued . |
message | String | The 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"
}
Updated 3 days ago