in src/main/java/com/epam/digital/data/platform/settings/api/controller/SettingsController.java [92:99]
public ResponseEntity<Void> deactivateChannel(
@PathVariable("channel") Channel channel,
@RequestBody @Valid SettingsDeactivateChannelInputDto input,
@Parameter(hidden = true) @RequestHeader("X-Access-Token") String accessToken) {
log.info("Deactivate {} channel called", channel);
activationService.deactivateChannel(channel, input, accessToken);
return ResponseEntity.status(HttpStatus.OK).build();
}