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

# List your webhook registrations

> Returns the webhook endpoints registered for your client and brand. The signing secret is never included — only whether one is set.



## OpenAPI

````yaml /openapi/public-openapi.json get /v1/webhooks/registrations
openapi: 3.1.0
info:
  title: Purple API
  version: 0.0.0
servers:
  - url: https://api.dev.purplelabelmd.com
security: []
tags:
  - description: Sign a patient in and out and manage the browser session.
    name: Sessions & authentication
  - description: Run the server-driven intake questionnaire question by question.
    name: Intake
  - description: Address autocomplete for the intake flow.
    name: Addresses
  - description: Read the public status of a patient's enrollment.
    name: Enrollment
  - description: Track a client's onboarding progress.
    name: Onboarding
  - description: Read back the platform configuration stored for your brand.
    name: Brand configuration
  - description: Enable offerings for your brand and set their display copy.
    name: Offering configuration
  - description: Start and track payments for an order.
    name: Payments
  - description: Subscribe to platform events and manage delivery endpoints.
    name: Webhooks
paths:
  /v1/webhooks/registrations:
    get:
      tags:
        - Webhooks
      summary: List your webhook registrations
      description: >-
        Returns the webhook endpoints registered for your client and brand. The
        signing secret is never included — only whether one is set.
      operationId: listWebhookRegistrations
      parameters:
        - $ref: '#/components/parameters/BrandIdHeader'
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    items:
                      $ref: '#/components/schemas/WebhookRegistrationView'
                    type: array
                required:
                  - data
                type: object
          description: the caller's registrations
      security:
        - apiKey: []
components:
  parameters:
    BrandIdHeader:
      description: >-
        Opaque brand id (brd_...). Validated to belong to the resolved client
        (§2).
      in: header
      name: X-Brand-Id
      required: true
      schema:
        pattern: ^brd_[A-Za-z0-9][A-Za-z0-9_-]*$
        type: string
  schemas:
    WebhookRegistrationView:
      description: >-
        A registration as returned by reads. The signing secret is not included
        and is never readable after creation — `secret_set: true` attests that
        one exists.
      properties:
        brand_id:
          description: bound from the validated X-Brand-Id at creation; immutable
          type: string
        client_id:
          description: bound from the gateway-resolved tenancy at creation; immutable
          type: string
        created_at:
          format: date-time
          type: string
        enabled:
          type: boolean
        event_types:
          items:
            $ref: '#/components/schemas/WebhookEventType'
          type: array
        registration_id:
          pattern: ^whr_[A-Za-z0-9][A-Za-z0-9_-]*$
          type: string
        secret_set:
          const: true
          type: boolean
        url:
          format: uri
          type: string
      required:
        - registration_id
        - client_id
        - brand_id
        - url
        - event_types
        - enabled
        - secret_set
        - created_at
      type: object
    WebhookEventType:
      description: >-
        The set of event-type names a webhook endpoint can subscribe to.
        Additive within v0 — new types may be added over time; existing ones are
        stable.
      enum:
        - journey.prospect.captured.v1
        - journey.intake.submitted.v1
        - journey.eligibility.evaluated.v1
        - journey.evaluation.deferred.v1
        - journey.evaluation.resumed.v1
        - journey.identity.bound.v1
        - journey.case.opened.v1
        - journey.payment.succeeded.v1
        - journey.identity.verified.v1
        - journey.visit.completed.v1
        - journey.labs.skipped.v1
        - journey.rx.transmitted.v1
        - journey.shipment.shipped.v1
        - journey.shipment.delivered.v1
        - journey.checkin.completed.v1
        - journey.step.abandoned.v1
        - onboarding.client.started.v1
        - onboarding.step.started.v1
        - onboarding.step.assigned.v1
        - onboarding.step.completed.v1
        - onboarding.step.nudged.v1
        - onboarding.step.escalated.v1
        - onboarding.agreement.executed.v1
        - onboarding.completion.gate_ready.v1
        - onboarding.completion.e2e_result.v1
        - onboarding.client.completed.v1
      type: string
  securitySchemes:
    apiKey:
      description: 'Per-client API key (M2M). Presented as `Authorization: Bearer <key>`.'
      scheme: bearer
      type: http

````