WhatsApp Flows endpoint server response encryption using C# and BouncyCastle 2.3.1

I am using C# to decrypt a request from data_exchange in Whatsapp flows successfully using BouncyCastle 2.3.1,
however I am having issues on decryption whatsApp playground says it cannot decrypt the response that I am providing(from the server).
Below is my code.

var aesKey = DecryptUsingRsa(privateKey, encryptedAesKey); //Decrypting the aes_key from the request and its working on decryption.

Working Decryption method

public static byte[] Encrypt(byte[] plaintext, byte[] key, byte[] iv)
{
    var cipher = new GcmBlockCipher(new AesEngine());
    var parameters = new AeadParameters(new KeyParameter(key), 128, iv);
    cipher.Init(true, parameters);

    var ciphertext = new byte[cipher.GetOutputSize(plaintext.Length)];
    var len = cipher.ProcessBytes(plaintext, 0, plaintext.Length, ciphertext, 0);
    cipher.DoFinal(ciphertext, len);

    var authenticationTag = cipher.GetMac();

    var combinedCiphertext = new byte[ciphertext.Length + authenticationTag.Length];
    Array.Copy(ciphertext, 0, combinedCiphertext, 0, ciphertext.Length);
    Array.Copy(authenticationTag, 0, combinedCiphertext, ciphertext.Length, authenticationTag.Length);

    return combinedCiphertext;

}//Working decryption method

The WAExchangeResponse is the response to be sent to WhatsApp according to the expected structure

public class WAExchangeResponse
{
    public string version { get; set; }
    public string screen { get; set; }
    public Dictionary<string, string> data { get; set; }
}
byte[] responsePayload = Encoding.UTF8.GetBytes(JsonSerializer.Serialize(wAExchangeResponse));// convert the response object to byte array after I serialize it.
byte[] flippedIV = FlipIv(initialVector);// byte array with inverted bits from the  initialization vector received in the request.
    private static byte[] FlipIv(byte[] iv)
    {
        for (int i = 0; i < iv.Length; i++)
        {
            iv[i] ^= 0xFF; // Invert all bits
        }
        return iv;
    }// the method
var encryptedPayload = Encrypt(responsePayload, aesKey, responseIV);//encrypting the payload
    private static byte[] Encrypt(byte[] plaintext, byte[] key, byte[] iv)
    {
        var cipher = new GcmBlockCipher(new AesEngine());
        var parameters = new AeadParameters(new KeyParameter(key), 128, iv);
        cipher.Init(true, parameters);

        var ciphertext = new byte[cipher.GetOutputSize(plaintext.Length)];
        var len = cipher.ProcessBytes(plaintext, 0, plaintext.Length, ciphertext, 0);
        cipher.DoFinal(ciphertext, len);

        var authenticationTag = cipher.GetMac();

        var combinedCiphertext = new byte[ciphertext.Length + authenticationTag.Length];
        Array.Copy(ciphertext, 0, combinedCiphertext, 0, ciphertext.Length);
        Array.Copy(authenticationTag, 0, combinedCiphertext, ciphertext.Length, authenticationTag.Length);//appending authentication tag generated during encryption to the end of the encryption result;

        return combinedCiphertext;

    }
string base64String = Convert.ToBase64String(encryptedPayload);//encoding the whole output as base64 string

Then in the controller I call the servic that return the above base64String as below

    [HttpPost("")]
    public IActionResult Create(WAEndpointRequest wAEndpointRequest)
    {
        var base64String = _processor.Create(wAEndpointRequest);

        Response.ContentType = "text/plain";
        Response.ContentLength = base64String.Length; 
        Response.StatusCode = 200;
        return Content(base64String, "text/plain", Encoding.UTF8);
    }

This is according to the documentation here https://developers.secure.facebook.com/docs/whatsapp/flows/guides/implementingyourflowendpoint#request-decryption-and-encryption

I was expecting Whatsapp playground to be able to decrypt the response I am providing since the decryption is working well and I am following the documentaion.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật