Interface ContentIdChildAttachmentResource


@Path("/content/{id}/child/attachment") public interface ContentIdChildAttachmentResource
  • Method Details

    • createAttachments

      @POST @Produces("application/json") javax.ws.rs.core.Response createAttachments(@PathParam("id") String id, @QueryParam("status") @DefaultValue("current") String status)
    • getAttachments

      @GET @Produces("application/json") javax.ws.rs.core.Response getAttachments(@PathParam("id") String id, @QueryParam("expand") String expand, @QueryParam("start") Integer start, @QueryParam("limit") @DefaultValue("50") Integer limit, @QueryParam("filename") String filename, @QueryParam("mediaType") String mediaType)
    • updateData

      @POST @Produces("application/json") @Path("/{attachmentId}/data") javax.ws.rs.core.Response updateData(@PathParam("attachmentId") String attachmentId)
    • update

      @PUT @Consumes("application/json") @Produces("application/json") @Path("/{attachmentId}") javax.ws.rs.core.Response update(@PathParam("attachmentId") String attachmentId)