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

# Delete Allowed Domain

> Remove an allowed domain by id.

<Callout icon="flask-conical" color="#14b8a6">
  This is a **beta feature** according to [Algolia's Terms of Service ("Beta Services")](https://www.algolia.com/policies/terms/).
</Callout>

**Required ACL:** `editSettings`

## Usage

<CodeGroup>
  ```cs C# theme={"system"}
  // Initialize the client
  var client = new AgentStudioClient(
    new AgentStudioConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY")
  );

  // Call the API
  await client.DeleteAllowedDomainAsync(
    "a1b2c3d4-5678-90ab-cdef-123456789abc",
    "76710f1b-8231-42e5-b0d1-f43aac618e15"
  );
  ```

  ```dart Dart theme={"system"}
  // Initialize the client
  final client = AgentStudioClient(
      appId: 'ALGOLIA_APPLICATION_ID', apiKey: 'ALGOLIA_API_KEY');

  // Call the API
  await client.deleteAllowedDomain(
    domainId: "a1b2c3d4-5678-90ab-cdef-123456789abc",
    agentId: "76710f1b-8231-42e5-b0d1-f43aac618e15",
  );
  ```

  ```go Go theme={"system"}
  // Initialize the client
  client, err := agentStudio.NewClient("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY")
  if err != nil {
    // The client can fail to initialize if you pass an invalid parameter.
    panic(err)
  }

  // Call the API
  err = client.DeleteAllowedDomain(client.NewApiDeleteAllowedDomainRequest(
    "a1b2c3d4-5678-90ab-cdef-123456789abc", "76710f1b-8231-42e5-b0d1-f43aac618e15"))
  if err != nil {
    // handle the eventual error
    panic(err)
  }
  ```

  ```java Java theme={"system"}
  // Initialize the client
  AgentStudioClient client = new AgentStudioClient("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY");

  // Call the API
  client.deleteAllowedDomain("a1b2c3d4-5678-90ab-cdef-123456789abc", "76710f1b-8231-42e5-b0d1-f43aac618e15");
  ```

  ```js JavaScript theme={"system"}
  // Initialize the client
  const client = agentStudioClient('ALGOLIA_APPLICATION_ID', 'ALGOLIA_API_KEY');

  // Call the API
  await client.deleteAllowedDomain({
    domainId: 'a1b2c3d4-5678-90ab-cdef-123456789abc',
    agentId: '76710f1b-8231-42e5-b0d1-f43aac618e15',
  });
  ```

  ```kotlin Kotlin theme={"system"}
  // Initialize the client
  val client = AgentStudioClient(appId = "ALGOLIA_APPLICATION_ID", apiKey = "ALGOLIA_API_KEY")

  // Call the API
  client.deleteAllowedDomain(
    domainId = "a1b2c3d4-5678-90ab-cdef-123456789abc",
    agentId = "76710f1b-8231-42e5-b0d1-f43aac618e15",
  )
  ```

  ```php PHP theme={"system"}
  // Initialize the client
  $client = AgentStudioClient::create('ALGOLIA_APPLICATION_ID', 'ALGOLIA_API_KEY');

  // Call the API
  $client->deleteAllowedDomain(
      'a1b2c3d4-5678-90ab-cdef-123456789abc',
      '76710f1b-8231-42e5-b0d1-f43aac618e15',
  );
  ```

  ```python Python theme={"system"}
  # Initialize the client
  # In an asynchronous context, you can use AgentStudioClient instead, which exposes the exact same methods.
  client = AgentStudioClientSync("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY")

  # Call the API
  client.delete_allowed_domain(
      domain_id="a1b2c3d4-5678-90ab-cdef-123456789abc",
      agent_id="76710f1b-8231-42e5-b0d1-f43aac618e15",
  )
  ```

  ```ruby Ruby theme={"system"}
  # Initialize the client
  client = Algolia::AgentStudioClient.create("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY")

  # Call the API
  client.delete_allowed_domain("a1b2c3d4-5678-90ab-cdef-123456789abc", "76710f1b-8231-42e5-b0d1-f43aac618e15")
  ```

  ```scala Scala theme={"system"}
  // Initialize the client
  val client = AgentStudioClient(appId = "ALGOLIA_APPLICATION_ID", apiKey = "ALGOLIA_API_KEY")

  // Call the API
  Await.result(
    client.deleteAllowedDomain(
      domainId = "a1b2c3d4-5678-90ab-cdef-123456789abc",
      agentId = "76710f1b-8231-42e5-b0d1-f43aac618e15"
    ),
    Duration(100, "sec")
  )
  ```

  ```swift Swift theme={"system"}
  // Initialize the client
  let client = try AgentStudioClient(appID: "ALGOLIA_APPLICATION_ID", apiKey: "ALGOLIA_API_KEY")

  // Call the API
  try await client.deleteAllowedDomain(
      domainId: "a1b2c3d4-5678-90ab-cdef-123456789abc",
      agentId: "76710f1b-8231-42e5-b0d1-f43aac618e15"
  )
  ```
</CodeGroup>

<Card icon="folder-code" horizontal="true" title="See the full API reference" arrow="true" href="/doc/rest-api/agent-studio/delete-allowed-domain">
  For more details about input parameters
  and response fields.
</Card>
