> ## Documentation Index
> Fetch the complete documentation index at: https://docs.useautumn.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Rotate Secrets

> This event is sent when Vercel requires a resource's secrets to be rotated.

### Payload Fields

<ParamField body="resource" type="object" required>
  The resource whose secrets should be rotated.

  <Expandable title="properties">
    <ParamField body="id" type="string" required>
      The unique identifier of the resource.
    </ParamField>
  </Expandable>
</ParamField>

<ParamField body="installation_id" type="string" required>
  The Vercel integration configuration ID.
</ParamField>

<ParamField body="vercel_request_body" type="any" required>
  The raw request body from Vercel's rotation request.
</ParamField>


## OpenAPI

````yaml api/openapi.yml webhook vercel.resources.rotate_secrets
openapi: 3.1.0
info:
  title: Autumn API
  version: 2.3.0
servers:
  - url: https://api.useautumn.com
    description: Production server
security:
  - secretKey: []
paths: {}
components:
  securitySchemes:
    secretKey:
      type: http
      scheme: bearer
      bearerFormat: JWT

````