public async Task <IActionResult> DeleteImage([FromBody] DeleteImageInputDto request)
        {
            try
            {
                var blob = request.Url.Replace(BaseUrl, "").Trim();
                var url  = await _azureBlobService.Delete(blob);

                return(Ok(new ApiResponse(200, "Successfully deleted image blob!")));
            }
            catch
            {
                return(BadRequest(new ApiResponse(400, "Something went wrong. Please try again")));
            }
        }