Files in external system services
It is possible to upload files yourself, use the following formats:
- Use a raw or base64 included content
{
"content":"ZGl0IGlzIGRlIGZpbGVjb250ZW50IGVuIGRpdCBrYW4gaGVlbCBlcmcgbGFuZyB3b3JkZW4gYmxhIGJsYSBibGE=", //only if type "att", default null
"contentType":"image/png", //default null
"encoding":"base64", //default "none"
"originalFilename": "file.png", //required
"public":false, //default false
"type":"att" //default "att", otherwise "url"
}
- Or use a url to upload the file automatically.
{
"contentType":"image/png", //default null
"encoding":"none", //default "none"
"originalFilename": "file.png", //required
"public":false, //default false
"type":"url", //default "att", otherwise "url"
"url":"https://www.website.com/file.png" //only required if type url
}