---
title: "NotificationSecretRotationDto"
url: "https://developer.pexa.co.uk/apis/notifications-v1-v1/versions/72a6ef34-73d4-4940-b586-d4154e57aaea/schemas/NotificationSecretRotationDto"
---

> Full API specification: https://developer.pexa.co.uk/apis/notifications-v1-v1/versions/72a6ef34-73d4-4940-b586-d4154e57aaea.md

# NotificationSecretRotationDto

New shared secret details, containing `shared_secret` attribute

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Notification Service - V1 APIs
  version: v1
servers:
  - url: https://api.pexa.co.uk
    description: API Gateway URL
components:
  schemas:
    NotificationSecretRotationDto:
      description: New shared secret details, containing `shared_secret` attribute
      type: object
      required:
        - sharedSecret
        - expiry
      properties:
        expiry:
          type: string
          description: The time until which the shared secret is valid
          example: 2024-02-28T06:12:42Z
        sharedSecret:
          type: string
          description: The shared secret used to validate the webhook request
          example: 38e5d78c-d642-42d1-8064-0082dc87c4e5
```
