# Retry email delivery

> Re-attempt this email's failed webhook deliveries now.

`POST https://inboundr.net/api/v1/emails/{id}/retry`

Immediately re-attempts every **failed** or **dead** webhook delivery for this
email. Successful and still-pending deliveries are left untouched. Useful after
you've fixed an endpoint that was down.

<ParamField path="id" type="string" required>
  The email id (`em_…`).
</ParamField>

<ResponseExample>
```json 200
{ "retried": 2 }
```
</ResponseExample>

<ResponseField name="retried" type="integer">
  How many deliveries were re-attempted. `0` if the email had no failed
  deliveries (e.g. a store-only inbox with no endpoint).
</ResponseField>

<Note>Returns `404` if the email doesn't exist or isn't yours.</Note>
