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

Usage

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

// Call the API
var response = await client.BulkCreateAllowedDomainsAsync(
  "76710f1b-8231-42e5-b0d1-f43aac618e15",
  new AllowedDomainBulkInsert
  {
    Domains = new List<string> { "https://app.example.com", "*.example.org" },
  }
);

// print the response
Console.WriteLine(response);

See the full API reference

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