Sending a fax via the FaxClient:
var sendOptions = new FaxSendOptions{MediaUrl = "https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf",To = "ToNumber",From = fromNumber,ConnectionId = appId};var telnyxResult = await faxService.SendFaxAsync(sendOptions);var faxSid = telnyxResult.Id;Console.WriteLine(faxSid);
In v2.7.0, the faxSid (telnyxResult.Id) was returning an actual Guid. In v2.8.0, we get back a default Guid. No code was changed except for upgrading the telnyx-dotnet version. This value is important to our system and this issue is stopping us from upgrading.
Sending a fax via the FaxClient:
var sendOptions = new FaxSendOptions
{
MediaUrl = "https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf",
To = "ToNumber",
From = fromNumber,
ConnectionId = appId
};
var telnyxResult = await faxService.SendFaxAsync(sendOptions);
var faxSid = telnyxResult.Id;
Console.WriteLine(faxSid);
In v2.7.0, the
faxSid
(telnyxResult.Id
) was returning an actualGuid
. In v2.8.0, we get back a defaultGuid
. No code was changed except for upgrading the telnyx-dotnet version. This value is important to our system and this issue is stopping us from upgrading.