Skip to main content
Solved

how to disable cover page for faxes

  • October 20, 2024
  • 5 replies
  • 39 views

Forum|alt.badge.img
  • New Participant
  • 2 replies

I'm trying to disable fax cover sheet for faxes.
When I go to users->users with extentions (or templates->user settings)->select the user->Outbound Calls/Faxes->fax settings and go to Cover Page options, there's no "None" option to disable the cover sheet, there only 'Blank' option, but it doesn't disable cover sheet, it’s still present as the first page (it’s just blank). But I need to remove it at all.
 


 

 

Best answer by PhongVu

To send a Fax w/o the cover page using the Fax API, set the coverIndex to zero.

var body = {
      to: [{phoneNumber: RECIPIENT_NUMBER}],
      faxResolution: 'High',
      coverIndex: 0
    }
var FormData = require('form-data');
formData = new FormData();
formData.append('json', new Buffer.from(JSON.stringify(body)), {
    contentType: 'application/json'
});
...

Next time, please post questions relating to RingCentral platform API to the “Developer Platform, APIs & Integrations” category.

View original
Did this thread help you find an answer to your question?

5 replies

Problem Solver
  • Participating Frequently
  • 102 replies
  • October 22, 2024

what are you using to send the faxes?
In the admin portal you can select the Default cover page, as shown on your screenshots.
If you are sending the fax from the app - you can select what cover page to use:
Pic1 - default cover page is Birthday
Pic2 - can change it to None
 


 

 


Forum|alt.badge.img
  • Author
  • New Participant
  • 2 replies
  • October 22, 2024
Problem Solver wrote:

what are you using to send the faxes?
In the admin portal you can select the Default cover page, as shown on your screenshots.
If you are sending the fax from the app - you can select what cover page to use:
Pic1 - default cover page is Birthday
Pic2 - can change it to None
 


 

 

 

we don’t use ringcentral interface to send faxes, we’re sending it via ringcentral-api


Problem Solver
  • Participating Frequently
  • 102 replies
  • October 22, 2024

I hope @PhongVu can help you. He posts frequently on the developer platform side.
As is visible from my screenshot Blank and None are 2 different options, but for some reason you can’t select None as your default cover page in the admin portal.  


PhongVu
Community Manager
Forum|alt.badge.img
  • Community Manager
  • 2318 replies
  • Answer
  • October 22, 2024

To send a Fax w/o the cover page using the Fax API, set the coverIndex to zero.

var body = {
      to: [{phoneNumber: RECIPIENT_NUMBER}],
      faxResolution: 'High',
      coverIndex: 0
    }
var FormData = require('form-data');
formData = new FormData();
formData.append('json', new Buffer.from(JSON.stringify(body)), {
    contentType: 'application/json'
});
...

Next time, please post questions relating to RingCentral platform API to the “Developer Platform, APIs & Integrations” category.


Forum|alt.badge.img
  • Author
  • New Participant
  • 2 replies
  • October 22, 2024

Thank you!
it was helpful


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings