---
title: "Retry the successful webhook events of a webhook subscription"
method: POST
path: "/api/v2/webhooks/subscriptions/{subscriptionId}/events/retry-success"
tags: ["Subscriptions"]
---

# Retry the successful webhook events of a webhook subscription

`POST /api/v2/webhooks/subscriptions/{subscriptionId}/events/retry-success`

> 🔑
>
> Required OAuth scope: `webhooks:write`.

Retries all successful webhook events for a subscription within the specified timeframe (maximum 3 days per request). Events are retained for 90 days and can be retried in multiple requests.

## Path parameters

- `subscriptionId` string, ObjectId, required

## Headers

- `360-api-version` 'v2.0', required

## Request body

- RetryEventsDTO
  - `startDate` string, date-time, required — The date from which the events should be retried, in the `YYYY-MM-DDThh:mm:ss.sssZ` format (ISO 8601 in Coordinated Universal Time (UTC)).
  - `endDate` string, date-time, required — The date until which the events should be retried, in the `YYYY-MM-DDThh:mm:ss.sssZ` format (ISO 8601 in Coordinated Universal Time (UTC)).

## Response `204`

Retries the successful webhook events for the given webhook subscription and the given timeframe.

## Other responses

- `400` — The given `startDate` and `endDate` are invalid. The retry timeframe is limited to 3 days and the `endDate` must be after the `startDate`.
- `401` — The given access token is either missing, invalid, has expired, or has been revoked.
- `403` — The given access token does not have the required OAuth scope to execute the request.
- `404` — The given `subscriptionId` does not correspond to any active subscription.
- `429` — The client has sent too many requests in a short amount of time.

---

[API](https://skmtc.net/360learning/apis/webhook-api.md) · [All operations](https://skmtc.net/360learning/apis/webhook-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/360learning/webhook-api/versions/18374878903d/schema)
