Sep 20, 2024
Create a task V1
Creates a new task using the v1 endpoint, please use createTask
instead.
Usage
Copy
1
2
3
4
5
6
7
8
9
10
11
12
import com.algolia.api.IngestionClient;
import com.algolia.config.*;
IngestionClient client = new IngestionClient("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY", "ALGOLIA_APPLICATION_REGION");
client.createTaskV1(
new TaskCreateV1()
.setSourceID("search")
.setDestinationID("destinationName")
.setTrigger(new OnDemandTriggerInput().setType(OnDemandTriggerType.ON_DEMAND))
.setAction(ActionType.REPLACE)
);
Did you find this page helpful?