Skip to main content
This is a beta feature according to Algolia’s Terms of Service (“Beta Services”).
Required ACL: editSettings

Usage

// Initialize the client
var client = new AgentStudioClient(
  new AgentStudioConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY")
);

// Call the API
await client.BulkDeleteAllowedDomainsAsync(
  "76710f1b-8231-42e5-b0d1-f43aac618e15",
  new AllowedDomainBulkDelete
  {
    DomainIds = new List<string>
    {
      "a1b2c3d4-5678-90ab-cdef-123456789abc",
      "b2c3d4e5-6789-01ab-cdef-234567890abc",
    },
  }
);

See the full API reference

For more details about input parameters and response fields.
Last modified on June 15, 2026