Skip to main content

I am implementing fax functionality to a web app using the RingCentral java SDK. However there I couldn't find a documentation or examples on the way of implementing the fax re sending functionality using the SDK. There is an example in the documentation on the POST request as follows.

POST /restapi/v1.0/account/11112222/extension/22223333/fax HTTP/1.1 Content-Type: application/json Authorization: Bearer MyToken {  "originalMessageId": "12345678",  "to": : { "phoneNumber": "+15551234567" } ],  "sendTime": "2016-12-01T00:00:00Z" } 

However there is nothing regarding the way of doing it using the SDK. So can someone please enlighten me on how to do it using the SDK, what would be the method to call ? and what is the parameter object type?

Not sure what exactly you are asking for. On the title you wrote "resend/forward fax MANUALLY", but in your question you just asked "how to send using Java SDK".

Anyway, not sure about the resend before you could send. And there is no direct API to forward a fax.

To send fax message using Java SDK, check out this dev guide


Reply