> ## 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.

> Retrieve a specific webhook by ID, including its URL, status, and configured event types.

# Retrieve specific webhook



## OpenAPI

````yaml get /v1/webhooks/{webhookId}
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}:
    get:
      tags:
        - webhooks
      summary: Retrieve specific webhook
      description: Get a webhook by id
      operationId: WebhooksController_findOne
      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/WebhookDto'
components:
  schemas:
    WebhookDto:
      type: object
      properties:
        id:
          type: string
          format: ObjectId
        url:
          type: string
          description: The URL to send the webhook payload to.
        privateKey:
          type: string
          description: The secret key to be used to sign the webhook payload.
        teamId:
          type: string
          format: ObjectId
        organizationId:
          type: string
          format: ObjectId
      required:
        - id
        - url
        - privateKey

````