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?