Discussions

Ask a Question

pdf , tiff media type not supported??

Hi, I'm trying to send fax via rest api using httpclient, but i'm getting this response back When i try to send a pdf file I get this error: The request entity's media type 'application/pdf' is not supported for this resource. When I try to send a tiff file I get this error: The request entity's media type 'image/tiff' is not supported for this resource. here's what our account shows: "AcceptedFormats": [ "image/tiff" ], Would appreciate any help. Thanks

Fax to Australia number is not working

I have tried to send fax to Australia number 1300368999 but it is not working. Tried in postman also but not working +611300368999 as a dialnumber.

sending Multiple documents in a single fax.

Is there any way we can send multiple documents in a single fax using etherfax api. I have couple of documents with different byte[] . I want to send all documents in single sendfax call, as it needs to be received by user as a single fax. Is there anyway to do that in the API?

Calling EtherFax method such as GetFaxAccount from a web service returns null

Hi, EtherFax API calls/invocations from a windows console application and web forms works as expected, but the same returns null for any API method call made. Have used same APIKey for all 3 test applications. Is there any constraint/issue to using EtherFax from a web service? Thanks

Trying To Call SendFax() Returns EtherFaxResult "Invalid Or Missing File"

Hey There, I am using EtherFax C# library to send Fax and as specified in your document (https://docs.etherfax.net/docs/send-fax) creating a `FaxSend` object and calling `SendFax()` method like below `var fax = new FaxSend() { DialNumber = "8565551234", FaxImage = imageBytes // byte[] of image retrieved from other process }; // begin sending the fax var result = client.SendFax(fax);` But am getting `InvalidOrMissingNumber` enum value for `EtherFaxResult` which per documentation should be `InProgress`. Any idea (Or) suggestion?

Encryption required

When I query a fax destination, I see that the "Required" field is set to true. If this field is set, can I still send a regular (non-encrypted) document to that destination phone number?

Etherfax Client for .Net 4.5

I only see the library for .Net 4.6.2, could you guys publish a .dll for .Net 4.5 Thanks.

Is it possible to send cover sheet with Fax document? and if it is available then please mention the API name.

While sending fax needs to send cover sheet. Is there any API available to send cover sheet along with outbox API request.

What would be FaxReuslt value if partial pages sent?

Fax is sent successfully to the destination number, We will get Fax Result value is "0". If Total pages is "20" and after some time in the middle of sending to destination disconnected or some error occurred. Only 10 pages sent to destination. This case Pages Delivered would be "10" and what would be the Fax Result value.

Request API

Etherfax.Client has "public Task<string> Request(string url, string content = null);" method. I am trying to use it as, string response = await client.Request("https://na.connect.etherfax.net/rest/3.0/api/accounts"); but I am getting null in response. Can you please let me know if this is the correct way to use it? Or is there something I am missing? Any help would be appreciated. Thanks!