Interface PatientFeignClient


@FeignClient("patients") public interface PatientFeignClient
  • Method Details

    • getPatientById

      @GetMapping("/patients/{id}") org.springframework.http.ResponseEntity<SuccessResponse<PatientDto>> getPatientById(@PathVariable Long id, @RequestHeader("medilabo-solutions-correlation-id") String correlationId)
    • updateEarlyOnsetMailSent

      @PutMapping("/patients/{id}/early-onset-mail") void updateEarlyOnsetMailSent(@PathVariable Long id, @RequestParam boolean mailSent, @RequestHeader("medilabo-solutions-correlation-id") String correlationId)