team-telnyx / telnyx-dotnet

.NET SDK for the Telnyx API
MIT License
9 stars 9 forks source link

Fax Response from SendFax returns a default guid for 'Id' in v2.8.0 #80

Open twhitex opened 8 months ago

twhitex commented 8 months ago

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.

waynebrantley commented 3 months ago

@ADandyGuyInSpace @dmmc12 Any chance to fix this?