@RequireOrganizationAccess
  @GET
  @Path("feed")
  public JSONWithPadding getFeed(
      @Context UriInfo ui, @QueryParam("callback") @DefaultValue("callback") String callback)
      throws Exception {

    ApiResponse response = createApiResponse();
    response.setAction("get organization feed");

    ServiceResults results = management.getOrganizationActivity(organization);
    response.setEntities(results.getEntities());
    response.setSuccess();

    return new JSONWithPadding(response, callback);
  }