Cancellation of an order with reason for cancellation (Java)

In this use case, the user cancels the order. Sometimes, the seller asks for a reason for cancellation before cancelling the order that the user has to provide. The seller’s cancellation policy is also communicated

Cancellation of an order with reason for cancellation (Node.js)

In this use case, the user cancels the order. Sometimes, the pharmacy asks for a reason for cancellation before cancelling the order that the user has to provide. The pharmacy’s cancellation policy is also communicated

Cancellation of a diagnostic service appointment with reason for cancellation (Node.js)

In this use case, the user or the diagnostic center cancels the appointment with or without reason Code snippets Client calls the BAP server to trigger cancel: router.post("/healthcare_diagnostics/cancel_order", cancelOrder); async function cancelOrder({ body }, res)

Cancellation of a consultation appointment with reason for cancellation (Node.js)

In this use case, the user or the healthcare service provider (doctor, clinic, hospital etc) cancels an appointment from either end Code snippets Client calls the BAP server to trigger cancel: router.post("/healthcare_consultation/cancel_consultation", cancelOrder); async function

Cancel a trip (Node.js)

in this use case, the user cancels a trip before it starts Code snippets Client calls the BAP server to trigger cancel: router.post("/mobility/cancel_order", cancelOrder); async function cancelOrder({ body }, res) { try { // Get

Cancellation of an order with reason for cancellation (Node.js)

In this use case, the user cancels the order. Sometimes, the seller asks for a reason for cancellation before cancelling the order that the user has to provide. The seller’s cancellation policy is also communicated

Cancel a trip (Java)

in this use case, the user cancels a trip before it starts Code snippets Client calls the BAP server to trigger cancel: @PostMapping("/mobility/cancel_order") public ResponseEntity cancelOrder( @RequestHeader HttpHeaders headers, @RequestBody ClientOrderRequest request) { var response

Cancellation of an order with reason for cancellation (Java)

In this use case, the user cancels the order. Sometimes, the pharmacy asks for a reason for cancellation before cancelling the order that the user has to provide. The pharmacy’s cancellation policy is also communicated

Cancellation of a diagnostic service appointment with reason for cancellation (Java)

In this use case, the user or the diagnostic center cancels the appointment with or without reason Code snippets Client calls the BAP server to trigger cancel: @PostMapping("/healthcare_diagnostics/cancel_appointment") public ResponseEntity cancelAppointment( @RequestHeader HttpHeaders headers, @RequestBody

Cancellation of a consultation appointment with reason for cancellation (Java)

In this use case, the user or the healthcare service provider (doctor, clinic, hospital etc) cancels an appointment from either end Code snippets Client calls the BAP server to trigger cancel: @PostMapping("/healthcare_consultation/cancel_appointment") public ResponseEntity cancelAppointment(