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

> List all available webhook event types that can be delivered to your endpoint. Use this to understand which events you can subscribe to.

# Retrieve webhook event types



## OpenAPI

````yaml get /v1/webhooks/{webhookId}/event-types
openapi: 3.0.0
info:
  title: Partner API
  description: Public API for partner integrations
  version: '1.0'
  contact: {}
servers:
  - url: https://api-staging.respondent.io
security: []
tags: []
paths:
  /v1/webhooks/{webhookId}/event-types:
    get:
      tags:
        - webhooks
      summary: Retrieve webhook event types
      description: >-
        Get all event types that can be sent to a webhook.


        `PROJECTS.UPDATED`: All Recruiting Status Changes.


        `SCREENER_RESPONSES.CREATED`: Screener Responses Created in `PENDING`
        state


        `SCREENER_RESPONSES.UPDATED`: Screener Response status updates. Statuses
        included: `PAID`, `CANCELLED`.


        `MESSAGES.CREATED`: Any new messages from participants


        `CONVERSATIONS.CREATED`: Any new conversation
      operationId: WebhooksController_findEventTypes
      parameters:
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
        - name: x-api-secret
          in: header
          required: true
          schema:
            type: string
        - name: webhookId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookEventTypesDto'
components:
  schemas:
    WebhookEventTypesDto:
      type: object
      properties:
        eventTypes:
          type: array
          items:
            $ref: '#/components/schemas/WebhookEventType'
      required:
        - eventTypes
    WebhookEventType:
      type: string
      description: The webhook event type to simulate.
      enum:
        - PROJECTS.UPDATED
        - SCREENER_RESPONSES.CREATED
        - SCREENER_RESPONSES.UPDATED
        - MESSAGES.CREATED
        - CONVERSATIONS.CREATED

````