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
| Endpoint | Method |
|---|---|
/api/v3/reports/{uuid}/retry | POST |
Request parameters
| Field | Description |
|---|---|
uuid | Specify the UUID of the report you want to retry. |
Response parameters
The following parameters are returned in the response:
| 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. |
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"
}