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

# List webhook endpoints

> List the webhook endpoints registered for your organization, newest first. The shared `apiKey` secret is never returned.



## OpenAPI

````yaml /partner-api/openapi.json get /webhook-config
openapi: 3.0.3
info:
  title: TruEnroll Partner API
  version: 1.0.0
  description: >-
    Submit academic documents and retrieve structured extraction, forensics, and
    translation results.
servers:
  - url: https://eval-api.trential.dev/partner/v1
    description: Sandbox
  - url: https://api.truenroll.com/partner/v1
    description: Production
security:
  - apiKey: []
tags:
  - name: Cases
    description: Create and manage processing cases.
  - name: Results
    description: Fetch extraction, forensics, and translation results.
  - name: Webhooks
    description: Register endpoints that receive case events.
paths:
  /webhook-config:
    get:
      tags:
        - Webhooks
      summary: List webhook endpoints
      description: >-
        List the webhook endpoints registered for your organization, newest
        first. The shared `apiKey` secret is never returned.
      operationId: listWebhookConfigs
      parameters:
        - name: audience
          in: query
          required: false
          schema:
            type: string
            enum:
              - partner
              - internal
          description: Optionally filter by audience.
      responses:
        '200':
          description: Registered webhook endpoints.
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/SuccessResponse'
                  - properties:
                      data:
                        type: array
                        items:
                          $ref: '#/components/schemas/WebhookConfig'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    SuccessResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        message:
          type: string
        meta:
          type: object
          description: >-
            Optional metadata (e.g. pagination). Empty object when not
            applicable.
        data: {}
      required:
        - success
        - message
        - meta
        - data
    WebhookConfig:
      type: object
      properties:
        id:
          type: string
        endpoint:
          type: string
          format: uri
        audience:
          type: string
          enum:
            - partner
            - internal
        description:
          type: string
          nullable: true
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - id
        - endpoint
        - audience
        - createdAt
        - updatedAt
    ErrorResponse:
      type: object
      properties:
        statusCode:
          type: integer
        message:
          type: string
      required:
        - statusCode
        - message
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Partner API key. Also accepted as `Authorization: Bearer <key>`.'

````