java.lang.Object
com.atlassian.confluence.plugins.restapi.resources.SearchResource

@PublicApi @Consumes("application/json") @Produces("application/json") @Path("/search") public class SearchResource extends Object
API REST Resource for searching for entities in Confluence. Generally delegates to the CQLSearchService.
  • Constructor Details

  • Method Details

    • search

      @GET public SearchPageResponse<SearchResult> search(@QueryParam("cql") String cql, @QueryParam("cqlcontext") String cqlcontext, @QueryParam("excerpt") @DefaultValue("highlight") String excerpt, @QueryParam("expand") String expand, @QueryParam("start") @DefaultValue("0") int offset, String afterOffset, @QueryParam("limit") @DefaultValue("25") int limit, @QueryParam("includeArchivedSpaces") @DefaultValue("false") boolean includeArchivedSpaces, @Context javax.ws.rs.core.UriInfo uriInfo)