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

# Account Webhook Get

> Return this account's webhook config. Never exposes the raw secret
(has_secret is a bool).



## OpenAPI

````yaml /openapi.yaml get /api/v1/account/webhook
openapi: 3.1.0
info:
  title: Mahara Platform
  description: >
    AI Sales Training Course Generator, a Coursera-style platform.


    ## Authentication


    Every request must carry your API key as a Bearer token:


    `Authorization: Bearer sk_live_your_key_here`


    ## Getting an API key


    API keys are provisioned by our team. They are not self-service, so there is
    no signup page to apply on. To request access, email **sales@myustadia.com**
    and we will issue a key for your account.
  version: 1.0.0
servers: []
security: []
paths:
  /api/v1/account/webhook:
    get:
      tags:
        - B2B Courses v2
      summary: Account Webhook Get
      description: |-
        Return this account's webhook config. Never exposes the raw secret
        (has_secret is a bool).
      operationId: account_webhook_get_api_v1_account_webhook_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````