Skip to main content
Participant
April 15, 2025
Question

Printing is unintentionally being prevented.

  • April 15, 2025
  • 0 replies
  • 77 views

Hi, 
I implemented the following settings to set a password so that the PDF cannot be edited.

It seems OK, but PRINT is  protected also.
What was wrong?
Could someone provide me with some advice, please?

 
"assetID": "XXXXXXXXXXXXXXXXXX",
    "passwordProtection": {
        "ownerPassword": "123456"
        },
    "encryptionAlgorithm": "AES_128",
    "contentToEncrypt": "ALL_CONTENT",
    "permissions": [
      "PRINT_HIGH_QUALITY",
        "EDIT_CONTENT"
        ],
    "notifiers": [
        {
            "type": "CALLBACK",
            "data": {
            "url": "https://dummy.callback.org/",
            "headers": {
                "x-api-key": "dummykey",
                "access-token": "dummytoken"
                }
            }
        }
        ]
}