1

I have integrated universal printer in my App(outsystems) using Microsoft graph APIs, it's working as expected except pageRanges, for example I have document containing 5 pages and I want to print 3rd and 4th page only but it is printing all 5 pages every time.

Following is the JSON representation of the request

{
  "configuration": {
    "quality": "medium",
    "dpi": 600,
    "duplexMode": "oneSided",
    "copies": 1,
    "colorMode": "auto",
    "mediaSize": "A4",
    "collate": true,
    "feedOrientation": "longEdgeFirst",
    "fitPdfToPage": false,
    "inputBin": "tray-1",
    "orientation": "portrait",
    "pageRanges": [
      {
        "start": 3,
        "end": 4
      }
    ], 
    "pagesPerSheet": 1,
    "scaling": "none"
  }
}

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.