---
title: "UpdatesAvailableWebhookEvent"
url: "https://developer.agentsync.io/apis/producer-sync-api/versions/73929b36-7345-4da4-bd67-f8cea6ba3de4/schemas/UpdatesAvailableWebhookEvent"
---

> Full API specification: https://developer.agentsync.io/apis/producer-sync-api/versions/73929b36-7345-4da4-bd67-f8cea6ba3de4.md

# UpdatesAvailableWebhookEvent

## OpenAPI definition

```yaml
openapi: 3.1.1
info:
  title: ProducerSync API
  version: v2.86.10
servers:
  - url: https://api.sandbox.agentsync.io
    description: Sandbox
components:
  schemas:
    WebhookEventEnvelope:
      type: object
      description: Fields common to every ProducerSync webhook event.
      required:
        - id
        - type
        - timestamp
      properties:
        id:
          type: string
          description: Unique identifier for this event, a TypeID with the `whe_` prefix.
            Repeated on retries — use it to deduplicate.
          example: whe_01m0a149wzf6sb9ap9y8tafwe1
        type:
          type: string
          description: The specific event type.
        timestamp:
          type: string
          format: date-time
          description: UTC time the event was generated. Fractional-second precision is
            not fixed - parse with a tolerant RFC 3339 parser rather than a
            fixed-millisecond format.
          example: 2026-08-18T08:52:09.2471298Z
    UpdatesAvailableEventData:
      type: object
      required:
        - runDate
      properties:
        runDate:
          type: string
          format: date
          description: The NIPR run date the completed batch covers. Pass this as
            `updatedSince` to fetch only the records that changed.
          example: 2025-07-24
    UpdatesAvailableWebhookEvent:
      allOf:
        - $ref: "#/components/schemas/WebhookEventEnvelope"
        - type: object
          required:
            - data
          properties:
            type:
              const: producersync.updates_available
            data:
              $ref: "#/components/schemas/UpdatesAvailableEventData"
```
