Inserting watermark in Word

I looked in the documentation, here on stackoverflow, on github and in several places but I couldn't find any solution that would help me to insert a watermark in the page header.

But after a few days of difficulty, I was testing all possible methods and combinations of use until I managed to understand how to insert the watermark. And it's simpler than I thought. Too bad this isn't in Microsoft Docs.

  return Word.run( (context) => {
    context.document.sections.getFirst().getHeader().insertParagraph('WaterMark', Word.InsertLocation.start);
    context.sync();
  });