I am using the API to send faxes to other countries. It works great for US numbers. When I use an international number and include the country code in the phone number, the country code appears to be ignored and it thinks the number is a US number. I confirmed in the debugger that I am passing the full number to the API in the MessageStoreCalleeInfoRequest's Phone Number Parameter - 15 digits (I'm in C#).
I've pulled back the call logs and message store for this call and they both are taking out the international country code.
What do I need to do in order to format things so the international code is taken?
var sendFaxMessageRequest = new CreateFaxMessageRequest
{
to = new[]
{
new MessageStoreCalleeInfoRequest
{
phoneNumber = RINGCENTRAL_RECEIVER,
name = "BK:Member " + MemberNumber
}
},