Discussions

Ask a Question

Cannot login because of two factor authentication

I need to login in to the portal but I can't able to login because of two factor authentication enabled previously. Now I don't have google authenticator app in my mobile but for login i need to enter the code from app.

FaxResult possible final values

Hi, We are doing a POC to send the Fax using REST API. After we send the POST call, we are using the JobId to get Fax status. We have a logic in our POC where we are calling GET /status after every X seconds. We wanted to know which values of FaxResult are the final values i.e we cannot get any different FaxResult for the same job after that? Thanks, Rohit

etherFAX Integration Module MSI installer package

hi , Where can we download the etherFAX Integration Module MSI installer package. Please help

ERROR - connection authentication failed

Hi, Getting below error message when I am trying to configure etherFax account, even after installed Framework 4.7 and all windows updates. ERROR - connection authentication failed. Regards, Babji

Cancelling Fax job is possible or not .

I wants to cancel the Fax job after requested So If any possibility to cancel the Fax job.If possible what is API name and If API is not available any other way to cancel the fax job.

Push notification for get status for delivery is supported for Java and Android application

Is push notification supported in Java language for Android application.
ANSWERED

Retry Print

We are running multiple instances of ERIS in a Docker to define the outbound DID. We have various routes (incoming DIDs) defined on each instance (duplicating so any instance can receive a fax and process appropriately), one of which is to a remote printer. Most of the time, it prints fine, but sometimes it doesn't. Is there an option to retry printing after, say, 2 minutes?

why my fax is not send to the client fax number?

after getting the successful message and the api return the 200 ok then why my fax is not sent to the client fax number. In response there is the diagram came and the fax not send. Give me details which data we want to send. Please, guide me as soon as possible Thanks,

Time Date Stamp on Header

We are receiving faxes with no time date stamp. What controls this function?

Noobie Question: Authentican Failure

Sorry for being a noobie here, have a question: Connecting our Salesforce Org to etherFax via the REST API...first, we reach out to the base endpoint to see if the port is alive and get a good response. Next, we authenticate using my credentials BASE64 encoded with a good response of 200. Then, just to start building out I attempt to make a GET to the /accounts at: ``` 08:02:40.1 (200902223)|USER_DEBUG|[209]|DEBUG|[ETHERFAX006I] -> con_ETHERFAXHTTPAPIENDPOINT=https://na.connect.etherfax.net/rest/3.0/api/accounts ``` ...adding the Authentication header to which my credentials are denied (401). I also tried the /accounts interactive test snippet in the API Library and it too, denied my credentials. Is there something extra that is required for developers? ``` public static String accounts(Boolean bol_etherFaxDebugFlag) { String accounts = ''; Http http = new Http(); HttpRequest httprequest = new HttpRequest(); httprequest.setMethod('GET'); httprequest.setHeader('Accept','application/json'); httprequest.setHeader('Authorization', str_httpauthorizationHeader); httprequest.setEndpoint(con_ETHERFAXHTTPAPIENDPOINT + '/accounts'); if (bol_etherFaxDebugFlag) EtherFaxDebugMessage('006', 'I', 'con_ETHERFAXHTTPAPIENDPOINT=' + con_ETHERFAXHTTPAPIENDPOINT + '/accounts'); HttpResponse httpresponse = http.send(httprequest); int_HTTPResponseCode = httpresponse.getStatusCode(); ``` Thanks for the help in advance! James Kepler - PenServ Plan Services, Columbia SC