@GET
 @Produces(
     value = {
       VND_ORCID_XML,
       ORCID_XML,
       MediaType.APPLICATION_XML,
       VND_ORCID_JSON,
       ORCID_JSON,
       MediaType.APPLICATION_JSON
     })
 @Path(WORK_SUMMARY + PUTCODE)
 @ApiOperation(value = "Fetch a Work Summary", response = WorkSummary.class)
 public Response viewWorkSummary(
     @PathParam("orcid") String orcid, @PathParam("putCode") Long putCode) {
   return serviceDelegator.viewWorkSummary(orcid, putCode);
 }