# Renew a webhook subscription Renew an existing webhook subscription to extend its expiration date. - Extends subscription expiration by 1 month from current expiration date. - Subscriptions can only be renewed 5 days before expiration. An operations manager wants to continue receiving webhook notifications for an existing subscription. Using this endpoint, they can extend the subscription without recreating it. Endpoint: POST /api/v2/webhooks/subscriptions/{subscriptionId}/renewals Version: 2.0.0 Security: X-Api-Client-Id, X-Auth-Token ## Path parameters: - `subscriptionId` (string, required) The unique identifier of the webhook subscription to renew. Example: "webhook-sub-12345" ## Response 200 fields (application/json): - `id` (string) Unique identifier for the webhook subscription. Example: "webhook-sub-12345" - `event` (string) The event type that this subscription is listening for. Example: "FLIGHT_UPDATE" - `callbackUrl` (string) The URL where webhook notifications will be sent. Example: "https://example.com/webhooks" - `status` (string) Status of the webhook subscription indicating whether it is active and receiving notifications or inactive. Enum: "ACTIVE", "INACTIVE" - `createdAtDateTime` (string) The date and time when the webhook subscription was created. Example: "2024-01-15T10:30:00.000Z" - `updatedAtDateTime` (string) The date and time when the webhook subscription was last updated. Example: "2024-01-15T10:30:00.000Z" - `expirationDateTime` (string) The date and time when the webhook subscription will expire. Example: "2024-02-15T10:30:00.000Z"