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

# 웹훅 목록 조회

> 페이지네이션을 포함한 등록된 웹훅 목록을 조회합니다.
- 이름, URL, 활성화 상태, 마지막 전송 시각 포함




## OpenAPI

````yaml /ko/api-reference/openapi.yaml get /api/v2/orders/webhooks
openapi: 3.0.0
info:
  title: BIZ MORI API
  version: 2.0.0
  description: |
    BIZ MORI API는 디지털 콘텐츠 보호를 위한 네 가지 핵심 서비스를 제공합니다:
    - **Anti-AI**: 이미지를 AI 학습으로부터 보호
    - **Watermark Embed**: 이미지에 보이지 않는 디지털 워터마크 삽입
    - **Watermark Extract**: 이미지에서 워터마크 추출 및 검증
    - **AI Detection**: 이미지가 AI로 생성되었는지 감지
  contact:
    name: BIZ MORI 지원
    email: support@bizmori.com
servers:
  - url: https://api.bizmori.com
    description: 프로덕션
security: []
tags:
  - name: Anti-AI
    description: AI 학습 방지 이미지 보호 주문
  - name: Watermark Embed
    description: 워터마크 삽입 주문
  - name: Watermark Extract
    description: 워터마크 추출 주문
  - name: AI Detection
    description: AI 생성 이미지 감지 주문
  - name: Orders
    description: 주문 조회 및 관리
  - name: Webhooks
    description: 웹훅 설정 및 이벤트
paths:
  /api/v2/orders/webhooks:
    get:
      tags:
        - Webhooks
      summary: 웹훅 목록 조회
      description: |
        페이지네이션을 포함한 등록된 웹훅 목록을 조회합니다.
        - 이름, URL, 활성화 상태, 마지막 전송 시각 포함
      parameters:
        - in: query
          name: page
          schema:
            type: integer
            default: 1
            minimum: 1
          description: 페이지 번호
        - in: query
          name: limit
          schema:
            type: integer
            default: 10
            minimum: 1
            maximum: 100
          description: 페이지당 항목 수
        - in: query
          name: keyword
          schema:
            type: string
          description: 검색 키워드 (웹훅 이름 또는 URL 검색)
      responses:
        '200':
          description: 성공
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      webhooks:
                        type: array
                        items:
                          $ref: '#/components/schemas/WebhookListItem'
                      pagination:
                        $ref: '#/components/schemas/WebhookPagination'
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
        - BearerAuth: []
      x-codeSamples:
        - lang: curl
          label: cURL
          source: >-
            curl -X GET
            "https://api.bizmori.com/api/v2/orders/webhooks?page=1&limit=10" \
              -H "Authorization: Bearer YOUR_API_TOKEN"
        - lang: javascript
          label: JavaScript
          source: |-
            const params = new URLSearchParams({ page: 1, limit: 10 });
            const response = await fetch(
              `https://api.bizmori.com/api/v2/orders/webhooks?${params}`,
              { headers: { 'Authorization': 'Bearer YOUR_API_TOKEN' } }
            );
            const data = await response.json();
        - lang: python
          label: Python
          source: |-
            import requests

            response = requests.get(
                'https://api.bizmori.com/api/v2/orders/webhooks',
                headers={'Authorization': 'Bearer YOUR_API_TOKEN'},
                params={'page': 1, 'limit': 10}
            )
            data = response.json()
components:
  schemas:
    WebhookListItem:
      type: object
      properties:
        id:
          type: integer
          description: 웹훅 ID
        name:
          type: string
          description: 웹훅 이름
        url:
          type: string
          format: uri
          description: 웹훅 URL
        isActive:
          type: boolean
          description: 활성화 상태
        lastSentAt:
          type: string
          format: date-time
          nullable: true
          description: 마지막 전송 시각
        createdAt:
          type: string
          format: date-time
          description: 생성 시각
    WebhookPagination:
      type: object
      properties:
        page:
          type: integer
          description: 현재 페이지
        limit:
          type: integer
          description: 페이지당 항목 수
        total:
          type: integer
          description: 전체 항목 수
        totalPages:
          type: integer
          description: 전체 페이지 수
    ErrorResponse:
      type: object
      properties:
        code:
          type: string
          description: 에러 코드
  responses:
    Unauthorized:
      description: 인증 실패
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            code: AUTH_NOT_AUTHENTICATED
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: 외부 클라이언트 접근을 위한 API 키

````