When upgrading to newest version of brevo client, getting this when sending sms with tag:
brevo_csharp.Client.ApiException: 'Error calling SendTransacSms. StatusCode BadRequest: {"code":"invalid_parameter","message":"Invalid tag format"}
Before it was a string, now its using a class: new SendTransacSmsTag("previousString").
working in v.1.1.0
var sendSmtpEmail = new SendTransacSms(from, phoneNumber, text, SendTransacSms.TypeEnum.Transactional, tag);
not working in v.1.1.1
var sendSmtpEmail = new SendTransacSms(from, phoneNumber, text, SendTransacSms.TypeEnum.Transactional, SendTransacSmsTag(tag));
When upgrading to newest version of brevo client, getting this when sending sms with tag:
brevo_csharp.Client.ApiException: 'Error calling SendTransacSms. StatusCode BadRequest: {"code":"invalid_parameter","message":"Invalid tag format"}
Before it was a string, now its using a class: new SendTransacSmsTag("previousString").
working in v.1.1.0
var sendSmtpEmail = new SendTransacSms(from, phoneNumber, text, SendTransacSms.TypeEnum.Transactional, tag);
not working in v.1.1.1
var sendSmtpEmail = new SendTransacSms(from, phoneNumber, text, SendTransacSms.TypeEnum.Transactional, SendTransacSmsTag(tag));