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

# Get Advanced Webhook Config

Use this API to retrieve the current advanced webhook configuration for a workspace.

<Info>
  This endpoint uses **API-key-level auth**: pass `x-velt-api-key` and `x-velt-auth-token` as headers. You can obtain these from the [Get Auth Tokens](/api-reference/rest-apis/v2/workspace/authtokens-get) endpoint.
</Info>

<Note>
  This endpoint is for **Advanced Webhooks**. For Basic Webhooks, use [Get Webhook Config](/api-reference/rest-apis/v2/workspace/webhookconfig-get).
</Note>

<Note>
  Advanced webhooks must be available for your workspace. If the feature is not enabled for your workspace, this endpoint returns a `FAILED_PRECONDITION` error. Contact us to enable advanced webhooks.
</Note>

# Endpoint

`POST https://api.velt.dev/v2/workspace/advancedwebhookconfig/get`

# Headers

<ParamField header="x-velt-api-key" type="string" required>
  Your API key.
</ParamField>

<ParamField header="x-velt-auth-token" type="string" required>
  Your [Auth Token](/security/auth-tokens).
</ParamField>

# Body

This endpoint does not require a request body.

# Example Request

```JSON theme={null}
{
  "data": {}
}
```

# Example Response

#### Success Response

```JSON theme={null}
{
  "result": {
    "status": "success",
    "message": "Advanced webhook configuration retrieved successfully.",
    "data": {
      "isEnabled": true,
      "encryptData": false,
      "encodeData": false,
      "publicKey": "",
      "enableDataProtection": false
    }
  }
}
```

<Note>
  If advanced webhooks have never been configured for the workspace, all fields are returned with their defaults (`isEnabled: false`, `encryptData: false`, `encodeData: false`, `publicKey: ""`, `enableDataProtection: false`).
</Note>

#### Failure Response

```JSON theme={null}
{
  "error": {
    "status": "FAILED_PRECONDITION",
    "message": "Advanced webhooks are not available for this workspace."
  }
}
```

<ResponseExample>
  ```js theme={null}
  {
    "result": {
      "status": "success",
      "message": "Advanced webhook configuration retrieved successfully.",
      "data": {
        "isEnabled": true,
        "encryptData": false,
        "encodeData": false,
        "publicKey": "",
        "enableDataProtection": false
      }
    }
  }
  ```
</ResponseExample>
