---
title: "Retry failed report run REST API | HitKeep"
description: "Reference for the HitKeep REST API operation Retry failed report run, including request parameters, responses, and authentication notes."
canonical: "https://hitkeep.com/api/operations/apireport-runsrun_idretry/"
---

# Retry failed report run REST API

POST

/api/report-runs/{run_id}/retry

FetchcURL

```
const url = 'http://127.0.0.1:25737/api/report-runs/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/retry';
const options = {method: 'POST', headers: {cookie: 'hk_token=<hk_token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```
curl --request POST \
  --url http://127.0.0.1:25737/api/report-runs/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/retry \
  --cookie hk_token=<hk_token>
```

-

Queues failed deliveries from a manageable report run for retry with the stable message ID.

## Authorizations

- **[cookieAuth](https://hitkeep.com/api/#cookieauth)**

## Parameters

### Path Parameters

**run_id**

required

string format: uuid

Report run UUID.

## Responses

### 202

Retry queued

### 404

Not found

application/json

object

**message**

string

##### Examplegenerated

```
{
  "message": "example"
}
```

### 409

Mail unavailable

application/json

object

**message**

string

##### Examplegenerated

```
{
  "message": "example"
}
```

[Previous Decide report recipient confirmation](https://hitkeep.com/api/operations/apireport-recipient-confirmationsopaque_token/post/)[Next List named reports](https://hitkeep.com/api/operations/apireports/get/)
