Print a document from Zoho Writer via Zoho Creator

Print a document from Zoho Writer via Zoho Creator

If i use the code below i can get writer to create a new document or email it to me but i want to be able to print it directly from the browser and not have to send it via email and then print. Below is the code im using.

Attached options form zoho writer and nothing to print

  1. // Define the Writer webhook URL
    webhookUrl = "https://writer.zoho.eu/writer/api/v1/documents/**Sensitive date removed**";
    // Map Creator form fields to JSON data
    dataMap = Map();
    dataMap.put("Company Name",input.Delivery_Name);
    dataMap.put("Address Line 1",input.Delivery_Address);
    dataMap.put("Address Line 2",input.Delivery_County);
    dataMap.put("Town",input.Delivery_Town);
    // Send the data via POST
    response = postUrl(webhookUrl,dataMap);