Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
API clients
Creates a new task.
addObject
deleteIndex
editSettings
// Initialize the client var client = new IngestionClient( new IngestionConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY", "ALGOLIA_APPLICATION_REGION") ); // Call the API var response = await client.CreateTaskAsync( new TaskCreate { SourceID = "search", DestinationID = "destinationID", Action = Enum.Parse<ActionType>("Replace"), } ); // print the response Console.WriteLine(response);
Was this page helpful?