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

# Disable assistant webhook

> Turn off webhook notifications for a specific Famulor AI assistant via API. Stops automated event delivery for call ended, lead created, and other triggers.

Disable webhook notifications for an assistant. After disabling, you'll no longer receive real-time updates about call completions.

### Request Body

<ParamField body="assistant_id" type="integer" required>
  The identifier of the assistant to disable webhooks for
</ParamField>

### Response

<ResponseField name="message" type="string">
  Success confirmation message
</ResponseField>

<ResponseField name="data" type="array">
  Empty array (reserved for future functionality)
</ResponseField>

### Error Responses

<ResponseField name="404 Not Found">
  <Expandable title="Error Response">
    <ResponseField name="message" type="string">
      Error when the assistant doesn't exist or belongs to another account
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="422 Validation Error">
  <Expandable title="Error Response">
    <ResponseField name="message" type="string">
      Validation error message
    </ResponseField>

    <ResponseField name="errors" type="object">
      Detailed field-level validation errors
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 Success Response theme={null}
  {
    "message": "Webhook disabled successfully",
    "data": []
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "message": "Assistant not found"
  }
  ```

  ```json 422 Validation Error theme={null}
  {
    "message": "The given data was invalid.",
    "errors": {
      "assistant_id": [
        "The assistant id field is required."
      ]
    }
  }
  ```
</ResponseExample>

### Webhook Behavior

When webhooks are disabled:

* No more HTTP POST requests will be sent to your webhook URL
* Both `is_webhook_active` becomes `false` and `webhook_url` is set to `null`
* Ongoing calls will complete normally, but no notifications will be sent
* Call data remains accessible via the API calls endpoints

### Notes

* The assistant must belong to your account
* This completely removes the webhook configuration
* You can re-enable webhooks later using the enable webhook endpoint with a new URL
* Disabling webhooks doesn't affect call recording or data collection

<Tip>
  Related pages: [Introduction](/en/api-reference/introduction) and [Authentication Guide](/en/developers/authentication-guide), and [API Integration Examples](/en/developers/api-integration-examples).
</Tip>
