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

# Get incoming webhook by ID

> Retrieve a specific incoming webhook by its ID



## OpenAPI

````yaml https://api.onset.io/v1/openapi.yml get /incoming-webhooks/{id}
openapi: 3.1.0
info:
  title: Onset API
  description: >-
    RESTful API for managing milestones, releases, subscribers, and webhooks in
    Onset workspace.
  version: 1.0.0
  contact:
    name: Onset Support
    url: https://www.onset.io
    email: support@onset.io
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
servers:
  - url: https://api.onset.io/v1
    description: API V1
security:
  - bearerAuth: []
  - basicAuth: []
tags:
  - name: Workspace
    description: Workspace management operations
  - name: Milestones
    description: Milestone management operations
  - name: Releases
    description: Release management operations
  - name: Subscribers
    description: Subscriber management operations
  - name: Webhooks
    description: Webhook management operations
  - name: Incoming Webhooks
    description: Incoming webhook management operations
paths:
  /incoming-webhooks/{id}:
    get:
      tags:
        - Incoming Webhooks
      summary: Get incoming webhook by ID
      description: Retrieve a specific incoming webhook by its ID
      parameters:
        - name: id
          in: path
          required: true
          description: Incoming webhook ID
          schema:
            type: string
      responses:
        '200':
          description: Incoming webhook retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IncomingWebhook'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    IncomingWebhook:
      type: object
      properties:
        id:
          type: string
          description: Unique incoming webhook identifier
          example: iw_01hf8k4x7n9m2p3q5r8s9t0v1w
        name:
          type: string
          description: Incoming webhook name
          example: New release trigger
        type:
          type: string
          enum:
            - RELEASE
            - MILESTONE
            - SUBSCRIBER
          description: Incoming webhook type
          example: RELEASE
        isEnabled:
          type: boolean
          description: Indicates whether the incoming webhook is enabled
          example: true
        url:
          type: string
          format: uri
          description: Incoming webhook URL endpoint
          example: https://hooks.onset.io/v1/XXXX/XXX
        lastTriggeredAt:
          type: string
          format: date-time
          nullable: true
          description: Timestamp of the last successful trigger
        createdAt:
          type: string
          format: date-time
          description: Creation timestamp
        updatedAt:
          type: string
          format: date-time
          description: Last update timestamp
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message
        details:
          type: object
          description: Additional error details
      required:
        - error
  responses:
    Unauthorized:
      description: Unauthorized - Invalid or missing authentication
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: Not found - Resource does not exist
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````