Interface ITodoListsMgmt


@Path("/mgmt/todolists") public interface ITodoListsMgmt
Todolist indexing API
  • Method Summary

    Modifier and Type
    Method
    Description
    reindex(String todoUid)
    Reindex a Todolist
    Reindex all Todolists
  • Method Details

    • reindexAll

      @POST @Path("_reindex") TaskRef reindexAll() throws ServerFault
      Reindex all Todolists
      Returns:
      TaskRef which can be used to track this asynchronous operation
      Throws:
      ServerFault
    • reindex

      @POST @Path("{containerUid}/_reindex") TaskRef reindex(@PathParam("containerUid") String todoUid) throws ServerFault
      Reindex a Todolist
      Parameters:
      todoUid - Unique Todolist ID
      Returns:
      TaskRef which can be used to track this asynchronous operation
      Throws:
      ServerFault