| | |
| | | http post : |
| | | http://localhost:8080/api/appointment/markAsContacted |
| | | |
| | | request body: |
| | | |
| | | 26 // appointment id |
| | | http://localhost:8080/api/appointment/markAsContacted/{appointmentId} |
| | |
| | | appointmentService.customerCreateAppointment(appointmentCreateDTO); |
| | | } |
| | | |
| | | @PostMapping("/markAsContacted") |
| | | public void markAsContacted(@RequestBody Long appointmentId) { |
| | | @PostMapping("/markAsContacted/{appointmentId}") |
| | | public void markAsContacted(@PathVariable Long appointmentId) { |
| | | appointmentService.markAsContacted(appointmentId); |
| | | } |
| | | |