> ## 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 the currently configured webhook for your organization.

# Retrieve webhook



## OpenAPI

````yaml get /v1/webhooks
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:
    get:
      tags:
        - webhooks
      summary: Retrieve webhook
      description: Get webhook for an organization.
      operationId: WebhooksController_find
      parameters:
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
        - name: x-api-secret
          in: header
          required: true
          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

````