Requests
External Image URLs
Instead of transferring document images to the Web Service as the Base64-encoded data, you can provide external URLs to the images for processing.
Warning
Passing external URLs as a request parameter is not completely secure, so use this method with caution.
To enable the Web Service accepting the external image URLs (disabled by default), use:
config.yaml
service:
processing:
externalImageUrl: true
In request parameters, use:
{
"processParam": {
"scenario": "FullAuth"
},
"ImageUrls": [
"https://example.com/image1.png",
"https://example.com/image2.png"
]
}